Skip to content

Commit

Permalink
feat: update caxa command
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed May 1, 2022
1 parent 85c945a commit 1f07855
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if (!(Test-Path "$rootDir\bin")) {
cd $rootDir

# Build the binary.
npx caxa --directory "$rootDir/build" --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/index.js" --output "./bin/vim-doge.exe"
npx caxa --input "$rootDir/build" --output "./bin/vim-doge.exe" -- "{{caxa}}/node_modules/.bin/node" "{{caxa}}/index.js"

# Archive the binary.
if ($outFile -ne "") {
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cd $ROOT_DIR
[[ -e ./bin/vim-doge ]] && rm -f ./bin/vim-doge

# Build the binary.
npx caxa --directory $ROOT_DIR/build --command "{{caxa}}/node_modules/.bin/node" "{{caxa}}/index.js" --output "./bin/vim-doge"
npx caxa --input "$ROOT_DIR/build" --output "./bin/vim-doge" -- "{{caxa}}/node_modules/.bin/node" "{{caxa}}/index.js"

# Archive the binary.
if [[ "$OUTFILE" != "" ]]; then
Expand Down

0 comments on commit 1f07855

Please sign in to comment.