Skip to content

Commit

Permalink
fix ci pwd
Browse files Browse the repository at this point in the history
  • Loading branch information
binarycraft007 committed Mar 2, 2023
1 parent 10b6f66 commit e40fb93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions ci/x86_64-linux-debug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ command="zig build test"

wget https://ziglang.org/builds/$zig_pkg \
> /dev/null 2>&1
mkdir -p $pwd/zig
mkdir -p $PWD/zig
tar --strip-components=1 -xf $zig_pkg \
-C $pwd/zig
export PATH=$PATH:$pwd/zig
-C $PWD/zig
export PATH=$PATH:$PWD/zig

eval "$command"
6 changes: 3 additions & 3 deletions ci/x86_64-macos-debug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ command="zig build test"

wget https://ziglang.org/builds/$zig_pkg \
> /dev/null 2>&1
mkdir -p $pwd/zig
mkdir -p $PWD/zig
tar --strip-components=1 -xf $zig_pkg \
-C $pwd/zig
export PATH=$PATH:$pwd/zig
-C $PWD/zig
export PATH=$PATH:$PWD/zig

eval "$command"

0 comments on commit e40fb93

Please sign in to comment.