Skip to content

Commit

Permalink
fix: add extensions to ensure dirname commands works
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed Oct 16, 2020
1 parent 6f8fcf0 commit 0e55767
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion autoload/doge.vim
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ endfunction
"" @public
" Install the necessary dependencies.
function! doge#install() abort
call execute('!' . g:doge_dir . '/scripts/install')
call execute('!' . g:doge_dir . '/scripts/install.sh')
endfunction

let &cpoptions = s:save_cpo
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"prebuild": "rimraf dist",
"watch": "tsc -p tsconfig.json --watch true --sourceMap",
"build": "tsc -p tsconfig.json",
"build:binary": "npm run prebuild && ncc build ./src/index.ts -m -o dist && ./scripts/build",
"build:binary": "npm run prebuild && ncc build ./src/index.ts -m -o dist && ./scripts/build.sh",
"lint": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\""
},
Expand Down
4 changes: 2 additions & 2 deletions run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -200,15 +200,15 @@ for vim in $(docker run --rm $DOGE_DOCKER_IMAGE ls /vim-build/bin | grep '^neovi
|| ( [[ $vim =~ ^neovim-v0.4 ]] && ((run_neovim_04_tests)) ); then
echo "Starting Vim: $vim..."
file_number=$((file_number+1))
scripts/run-vader-tests $verbose_flag "$vim" "$tests" > "$output_dir/$file_number" 2>&1 &
scripts/run-vader-tests.sh $verbose_flag "$vim" "$tests" > "$output_dir/$file_number" 2>&1 &
pid_list="$pid_list $!"
fi
done

if ((run_linter)); then
echo "Starting Vint..."
file_number=$((file_number+1))
scripts/run-vint > "$output_dir/$file_number" 2>&1 &
scripts/run-vint.sh > "$output_dir/$file_number" 2>&1 &
pid_list="$pid_list $!"
fi

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0e55767

Please sign in to comment.