Ver código fonte

Merge pull request #1639 from nlandry/upstream

Fix typo in newproject sed -i for Mac
Sean Taylor 11 anos atrás
pai
commit
1fdc90d70a
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      newproject.sh

+ 1 - 1
newproject.sh

@@ -21,7 +21,7 @@ shopt -s expand_aliases
 
 #Alias the sed in-place command for OSX and Linux - incompatibilities between BSD and Linux sed args
 if [[ "$unamestr" == "Darwin" ]]; then
-	alias aliassedinplace='sed -i""'
+	alias aliassedinplace='sed -i ""'
 else
 	#For Linux, notice no space after the '-i' 
 	alias aliassedinplace='sed -i""'