Skip to content

Commit d4539a4

Browse files
authored
Fix publishing docs to gh pages (#705)
* Fix publishing docs to gh pages * Fixes
1 parent 4970be8 commit d4539a4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

scripts/deploy-cargo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#! /bin/bash
2-
set -e
1+
#!/usr/bin/env bash
2+
set -eo pipefail
33

44
# Get the local version from Cargo.toml
55
package_name=$(awk '

scripts/deploy-docs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#! /usr/bin/env bash
2-
set -e
1+
#!/usr/bin/env bash
2+
set -eo pipefail
33

44
# Get the local version from package.json
55
local_version=$(jq -r ".version" package.json)

scripts/deploy-npm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#! /bin/bash
2-
set -e
1+
#!/usr/bin/env bash
2+
set -eo pipefail
33

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

0 commit comments

Comments
 (0)