Skip to content

Commit bd90998

Browse files
authored
Merge pull request #134 from dockersamples/fix-setup-break
Ensure the staging directory exists
2 parents 27d7b15 + 49ff6c3 commit bd90998

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

components/configurator/setup.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ clear_staging_directory() {
7777
rm -rf /staging
7878
mkdir /staging
7979
fi
80+
if [ ! -d /staging ]; then
81+
mkdir /staging
82+
fi
8083
}
8184

8285
clear_project_directory() {

0 commit comments

Comments
 (0)