Skip to content

Commit

Permalink
fix(build): Support spaces in folder name (#441)
Browse files Browse the repository at this point in the history
Home directories with spaces in them (forced by companies that don't understand how usernames work) break building the project. Take it or leave it, but this fixes that.
  • Loading branch information
brysgo authored and benjie committed Apr 15, 2017
1 parent bf10085 commit df347e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ rm -rf build
mkdir build

echo "Compiling with TypeScript"
$npm_bin/tsc
"$npm_bin"/tsc

echo "Building GraphiQL"
(cd src/postgraphql/graphiql && $npm_bin/react-scripts build)
(cd src/postgraphql/graphiql && "$npm_bin"/react-scripts build)

echo "Moving GraphiQL build output"
mkdir -p build/postgraphql/graphiql/public
Expand Down

0 comments on commit df347e7

Please sign in to comment.