Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wjthieme committed Jan 31, 2025
1 parent d5ecb60 commit f999538
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions scripts/deploy-cargo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /bin/bash
set -e
#!/usr/bin/env bash
set -eo pipefail

# Get the local version from Cargo.toml
package_name=$(awk '
Expand Down
4 changes: 2 additions & 2 deletions scripts/deploy-docs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env bash
set -e
#!/usr/bin/env bash
set -eo pipefail

# Get the local version from package.json
local_version=$(jq -r ".version" package.json)
Expand Down
4 changes: 2 additions & 2 deletions scripts/deploy-npm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /bin/bash
set -e
#!/usr/bin/env bash
set -eo pipefail

# Get the local version from package.json
package_name=$(jq -r ".name" package.json)
Expand Down

0 comments on commit f999538

Please sign in to comment.