We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cee13a commit 0700240Copy full SHA for 0700240
.github/workflows/check-genesis-hooks.yml
@@ -61,11 +61,9 @@ jobs:
61
run: |
62
# Download install.sh
63
curl -o /tmp/wasienv-install.sh https://raw.githubusercontent.com/wasienv/wasienv/master/install.sh
64
-
65
- # Delete `pip install wasienv --user` and `pip3 install wasienv --user` from install.sh
66
- # so that the binary is installed to ~/.wasienv/bin
67
- sed -i '127d' /tmp/wasienv-install.sh # delete `pip install wasienv --user`
68
- sed -i '121d' /tmp/wasienv-install.sh # delete `pip3 install wasienv --user`
+
+ # Replace /bin to /local/bin
+ sed -i 's|/bin|/local/bin|g' /tmp/wasienv-install.sh
69
70
# Execute the installed script
71
bash /tmp/wasienv-install.sh
0 commit comments