Skip to content

Commit bac803d

Browse files
Update run.sh
1 parent 0832455 commit bac803d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/run.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ source $GITHUB_ACTION_PATH/lib/time.sh
3232
source $GITHUB_ACTION_PATH/lib/js.sh
3333
source $GITHUB_ACTION_PATH/lib/cleanup.sh
3434

35-
if [ "$INPUT_PATH" == ""]; then
36-
INPUT_PATH="."
37-
elif [ -z "$INPUT_PATH" ]; then
35+
if [ -z "$INPUT_PATH" ] || [ "$INPUT_PATH" == "" ]; then
3836
INPUT_PATH="."
3937
fi
4038

@@ -266,7 +264,7 @@ compile_assets() {
266264

267265
if [[ "${COMPILE_SASS,,}" == "true" ]]; then
268266
PREPROCESSED="y"
269-
checkForDartSass
267+
#checkForDartSass
270268
source "$GITHUB_ACTION_PATH/lib/compile.sh"
271269
tocss "$INPUT_PATH" "sass"
272270
local DOCLEANUP=$(javascript $GITHUB_ACTION_PATH/src/check-cleanup.js "") && \
@@ -277,7 +275,7 @@ compile_assets() {
277275

278276
if [[ "${COMPILE_SCSS,,}" == "true" ]]; then
279277
PREPROCESSED="y"
280-
checkForDartSass
278+
#checkForDartSass
281279
source "$GITHUB_ACTION_PATH/lib/compile.sh"
282280
tocss "$INPUT_PATH" "scss"
283281
local DOCLEANUP=$(javascript $GITHUB_ACTION_PATH/src/check-cleanup.js "") && \

0 commit comments

Comments
 (0)