Skip to content

Commit

Permalink
Fix the script
Browse files Browse the repository at this point in the history
  • Loading branch information
simonewebdesign committed May 22, 2016
1 parent dcdb15a commit 75b9909
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions bin/elm-new
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#!/bin/sh
#!/bin/bash

cp src/Main.elm .
cp -R /usr/local/share/elm-new/* .

echo "Your Elm project has been created successfully."
echo "You can use `elm` to compile it, test it, and more.\n"
echo " elm make src/Main.elm\n"
echo "Run `elm` for more commands."
tree . 2>/dev/null

printf "\nYour Elm program has been created successfully.\n"
printf "You can use \"elm\" to compile it:\n\n"
printf " elm make src/Main.elm\n\n"
printf "Run \"elm\" for more commands.\n\n"

0 comments on commit 75b9909

Please sign in to comment.