Skip to content

Commit

Permalink
Fix creating derived data folder in build script if it does not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
maicki committed Feb 11, 2017
1 parent 3ec9e9e commit ec59c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function trap_handler {
trap trap_handler INT TERM EXIT

# Derived data handling
[ -d DERIVED_DATA_PATH ] || mkdir DERIVED_DATA_PATH
eval [ ! -d $DERIVED_DATA_PATH ] && eval mkdir $DERIVED_DATA_PATH
function clean_derived_data {
eval find $DERIVED_DATA_PATH -mindepth 1 -delete
}
Expand Down

0 comments on commit ec59c31

Please sign in to comment.