Skip to content

Commit

Permalink
try that?
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr authored Aug 17, 2023
1 parent d86dbaa commit bf65e36
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/prettier/install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash
set -ex
command -v npm || bash install-node.sh
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P)
command -v npm || bash "$script_dir/install-node.sh"

npm install -g prettier@$VERSION

Expand Down
3 changes: 2 additions & 1 deletion src/typescript/install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash
set -ex
command -v npm || bash install-node.sh
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P)
command -v npm || bash "$script_dir/install-node.sh"

npm install -g typescript@$VERSION
2 changes: 1 addition & 1 deletion test/typescript/base_ubuntu.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
set -ex
typescript --version
tsc --version
2 changes: 1 addition & 1 deletion test/typescript/debian_slim.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
set -ex
typescript --version
tsc --version

0 comments on commit bf65e36

Please sign in to comment.