Github user bhaisaab commented on the pull request: https://github.com/apache/cloudstack/pull/114#issuecomment-85465336 Hi, this commit breaks for unix environments. So I've created a fix using yours which seems to work for me; can you test it on your cygwin environment? - python "$thisdir/gen_toc.py" $(find . -type f) + PLATFORM=`uname -s` + if [[ "$PLATFORM" =~ .*WIN.* ]] + then + gen_toc_file="`cygpath -w $thisdir`\\gen_toc.py" + argfiles=`find . -type f` + for file in $argfiles; do + echo "Parse file $file"; + python $gen_toc_file $file; + done + else + python "$thisdir/gen_toc.py" $(find . -type f) + fi
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---