From abd9ffdbffab045532cb0e6a48f7a537a3cbc67c Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Thu, 26 Mar 2020 17:46:54 -0400 Subject: [PATCH] Missed bash linting check --- bin/steps/python | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/steps/python b/bin/steps/python index 1c09807..a5c1e12 100755 --- a/bin/steps/python +++ b/bin/steps/python @@ -99,7 +99,7 @@ fi if [[ ! -f "$CACHE_DIR/.heroku/requirements.txt" ]]; then # IF there's no cached dependencies, update cached version of requirements.txt # This should only run for new apps and first deploys after this update - cp -R $BUILD_DIR/requirements.txt "$CACHE_DIR/.heroku/requirements.txt" + cp -R "$BUILD_DIR/requirements.txt" "$CACHE_DIR/.heroku/requirements.txt" # If we don't already have a python version, this is a new app if [ -f .heroku/python-version ]; then puts-step "Clearing cached dependencies"