Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
harshdoesdev committed Oct 10, 2023
1 parent 3e1dc91 commit 5414eb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/vercel/artifact.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,12 @@ impl ArtifactPutRequest {

let headers = self.0.get_headers("PUT", Some(content_len));

let response = client
let response = dbg!(client
.put(&self.0.url)
.headers(headers)
.body(artifact.to_owned())
.send()
.await?;
.await?);

Ok(response)
}
Expand Down
2 changes: 1 addition & 1 deletion vercel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ install_vercel_cache_helper() {

# Download vercel-cache-helper using curl
echo "🚀 Downloading vercel-cache-helper..."
curl -fsSL https://github.com/fastn-stack/vercel-cache-helper/releases/latest/download/vercel-cache-helper_linux_musl_x86_64 -o "$install_dir/vercel-cache-helper"
curl -fsSL https://github.com/harshdoesdev/vercel-cache-helper/releases/latest/download/vercel-cache-helper_linux_musl_x86_64 -o "$install_dir/vercel-cache-helper"

# Make it executable
chmod +x "$install_dir/vercel-cache-helper"
Expand Down

0 comments on commit 5414eb6

Please sign in to comment.