Skip to content

Commit

Permalink
Fix utils
Browse files Browse the repository at this point in the history
Changed permissions to 755
The `generate-asdoc.sh` script now allows for a `lib` folder.
  • Loading branch information
IQAndreas committed May 12, 2014
2 parents b9b55fd + 5d78299 commit d0fe830
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 1 deletion.
Empty file modified utils/config
100644 → 100755
Empty file.
Empty file modified utils/flex-sdk
100644 → 100755
Empty file.
9 changes: 8 additions & 1 deletion utils/generate-asdoc.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ FLEX_SDK_LOCATION=`utils/flex-sdk`

if [ $? -eq 0 ];then

"$FLEX_SDK_LOCATION"/bin/asdoc -source-path "$SOURCE_CODE_LOCATION" -doc-sources "$SOURCE_CODE_LOCATION" -output "$ASDOC_OUTPUT_LOCATION"
asdoc_args=(-source-path="$SOURCE_CODE_LOCATION")
asdoc_args+=(-doc-sources="$SOURCE_CODE_LOCATION")
asdoc_args+=(-output="$ASDOC_OUTPUT_LOCATION")

# Only include the library folder if it exists
[ -d "$LIBRARY_LOCATION" ] && asdoc_args+=(-library-path+="$LIBRARY_LOCATION")

"$FLEX_SDK_LOCATION"/bin/asdoc "${asdoc_args[@]}";

else

Expand Down
Empty file modified utils/generate-flixel-project.py
100644 → 100755
Empty file.
Empty file modified utils/generate-swc.sh
100644 → 100755
Empty file.

0 comments on commit d0fe830

Please sign in to comment.