Skip to content

Commit

Permalink
Packaging: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
byeongkeunahn committed Dec 25, 2024
1 parent abfe41d commit cf2fa65
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion release-32bit.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python3 scripts/static-pie.py i686-unknown-linux-gnu C Release "$@"
python3 scripts/static-pie.py --target i686-unknown-linux-gnu --lang C --profile Release --cargo_args "$@"
2 changes: 1 addition & 1 deletion release-64bit-fn-impl-mingw.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python3 scripts/static-pie.py x86_64-pc-windows-gnu CFnImpl Release "$@"
python3 scripts/static-pie.py --target x86_64-pc-windows-gnu --lang CFnImpl --profile Release --cargo_args "$@"
2 changes: 1 addition & 1 deletion release-64bit-fn-impl.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python3 scripts/static-pie.py x86_64-unknown-linux-gnu CFnImpl Release "$@"
python3 scripts/static-pie.py --target x86_64-unknown-linux-gnu --lang CFnImpl --profile Release --cargo_args "$@"
2 changes: 1 addition & 1 deletion release-64bit-mingw.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python3 scripts/static-pie.py x86_64-pc-windows-gnu C Release "$@"
python3 scripts/static-pie.py --target x86_64-pc-windows-gnu --lang C --profile Release --cargo_args "$@"
2 changes: 1 addition & 1 deletion release-html.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python3 scripts/static-pie.py wasm32-unknown-unknown HTML Release "$@"
python3 scripts/static-pie.py --target wasm32-unknown-unknown --lang HTML --profile Release --cargo_args "$@"
2 changes: 1 addition & 1 deletion release-rs-mingw.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python3 scripts/static-pie.py x86_64-pc-windows-gnu Rust Release "$@"
python3 scripts/static-pie.py --target x86_64-pc-windows-gnu --lang Rust --profile Release --cargo_args "$@"
2 changes: 1 addition & 1 deletion release-rs.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python3 scripts/static-pie.py x86_64-unknown-linux-gnu Rust Release "$@"
python3 scripts/static-pie.py --target x86_64-unknown-linux-gnu --lang Rust --profile Release --cargo_args "$@"
2 changes: 1 addition & 1 deletion release-wasm32.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python3 scripts/static-pie.py wasm32-unknown-unknown JavaScript Release "$@"
python3 scripts/static-pie.py --target wasm32-unknown-unknown --lang JavaScript --profile Release --cargo_args "$@"
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python3 scripts/static-pie.py x86_64-unknown-linux-gnu C Release "$@"
python3 scripts/static-pie.py --target x86_64-unknown-linux-gnu --lang C --profile Release --cargo_args "$@"

0 comments on commit cf2fa65

Please sign in to comment.