Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/plugins/TaskRunner/Script.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ module.exports = class Script extends require('./AbstractPlugin') {
'export PS4=\'\$ \'',
// Enables command echoing.
'set -ux',
// Default CWD to $SRC_DIR (create it if it it doesn't exist).
'mkdir -p $SRC_DIR; cd $SRC_DIR',
// Default CWD to $SRC_DIR (remove for cached builds first, then create it if it it doesn't exist).
'rm -Rf $SRC_DIR; mkdir -p $SRC_DIR; cd $SRC_DIR',
].concat(script);

script = script.join('\n');
Expand Down