Fix dotnet-build.sh submit/tizen/20170620.072649
authorWonYoung Choi <wy80.choi@samsung.com>
Tue, 20 Jun 2017 05:17:55 +0000 (14:17 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Tue, 20 Jun 2017 05:17:55 +0000 (14:17 +0900)
Change-Id: I4b136af3acb45e8fd1ab83e497e3f7b3536ac7e4

Tools/dotnet-build.sh

index 1190949..1145c0c 100755 (executable)
@@ -70,7 +70,7 @@ cmd_restore() {
     run_dotnet restore $PROJECT $OPTS $@
   else
     if [[ $PROJECT_TYPE == "dir" ]]; then
-      local PROJFILES=$(find $PROJECT -name "*.project.json")
+      local PROJFILES=$(find $PROJECT -name "*project.json")
       for p in $PROJFILES; do
         run_nuget restore $p $@
       done