ValhallaTeam / angleproject

Automatically exported from code.google.com/p/angleproject
Other
0 stars 0 forks source link

svn generate_parser.sh execute bit #447

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The svn repository currently does not allow executing 
src/compiler/preprocessor/generate_parser.sh.  This needs to be fixed by 
running chmod 755 src/compiler/preprocessor/generate_parser.sh and svn commit.

Try this:
svn co -r2426 http://angleproject.googlecode.com/svn/trunk/
cd trunk/src/compiler/preprocessor
./generate_parser.sh

You get this error:
-bash: ./generate_parser.sh: Permission denied

Try this instead:
svn co -r2426 http://angleproject.googlecode.com/svn/trunk/
cd trunk/src/compiler/preprocessor
chmod 755 generate_parser.sh
./generate_parser.sh

ExpressionParser.cpp is generated successfully with this change.

Original issue reported on code.google.com by achriste...@gmail.com on 17 Jul 2013 at 9:09

GoogleCodeExporter commented 9 years ago
Relatedly, it would be nice to remove the execute bit from the project and 
filters files.  It causes problems with svn diff, and they are not executable.

Original comment by achriste...@gmail.com on 18 Jul 2013 at 6:30

GoogleCodeExporter commented 9 years ago
I'll take care of those shortly.

Original comment by shannonw...@chromium.org on 18 Jul 2013 at 2:24

GoogleCodeExporter commented 9 years ago
Sorry, I hadn't noticed that this issue is on the SVN repository only. That 
repository is read-only at this point, and no further updates will be published 
there. All development and updates will take place on the git repositories.

Original comment by shannonw...@google.com on 22 Jul 2013 at 3:41