Skip to content

Commit

Permalink
Ensure first argument is interpreted as a string (forem#14479)
Browse files Browse the repository at this point in the history
  • Loading branch information
djuber authored Aug 12, 2021
1 parent 09bd6ca commit 32bec44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/e2e
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ printf "Starting the test runner...\n\n"

bundle exec rails assets:precompile;

if [ $1 = "--creator-onboarding-seed" ]; then
if [ "$1" = "--creator-onboarding-seed" ]; then
echo "Running E2E tests with creator onboarding seed data"
CYPRESS_RAILS_CYPRESS_OPTS="--config-file cypress.dev.json" RAILS_ENV=test E2E=true CREATOR_ONBOARDING_SEED_DATA=1 E2E_FOLDER=creatorOnboardingFlows bundle exec rake cypress:open
else
Expand Down

0 comments on commit 32bec44

Please sign in to comment.