소스 검색

Fix issue with install tool

Steven Schveighoffer 2 년 전
부모
커밋
c532925970
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      install/source/app.d

+ 2 - 0
install/source/app.d

@@ -309,6 +309,8 @@ int main()
             tokens.rewind;
             tokens.endCache;
             nt = tokens.skipItem;
+            // skip whatever the next token is, it's either a comma, or the array end.
+            cast(void)tokens.next;
         }
         throw new Exception("Could not find raylib-d dependency for current project!");
     }