Skip to content

Commit

Permalink
fix(npm): Fixing assert script slightly (#7887)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanmquach authored Feb 13, 2020
1 parent 92117c4 commit 8f0bb7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/scripts/modules/assert_package_bumps_standalone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ fi
if [[ -n $TRAVIS || -n $GITHUB_ACTIONS ]] ; then
echo "git fetch -q..."
git fetch -q
CI_TARGET_BRANCH=origin/master
cd app/scripts/modules || exit 1;
CI_TARGET_BRANCH=origin/master # dirname should maybe work in both cases?
cd "$(dirname "$0")" || exit 1;
else
cd "$(dirname "$0")" || exit 2;
fi
Expand Down

0 comments on commit 8f0bb7d

Please sign in to comment.