File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -32,9 +32,7 @@ source $GITHUB_ACTION_PATH/lib/time.sh
32
32
source $GITHUB_ACTION_PATH /lib/js.sh
33
33
source $GITHUB_ACTION_PATH /lib/cleanup.sh
34
34
35
- if [ " $INPUT_PATH " == " " ]; then
36
- INPUT_PATH=" ."
37
- elif [ -z " $INPUT_PATH " ]; then
35
+ if [ -z " $INPUT_PATH " ] || [ " $INPUT_PATH " == " " ]; then
38
36
INPUT_PATH=" ."
39
37
fi
40
38
@@ -266,7 +264,7 @@ compile_assets() {
266
264
267
265
if [[ " ${COMPILE_SASS,,} " == " true" ]]; then
268
266
PREPROCESSED=" y"
269
- checkForDartSass
267
+ # checkForDartSass
270
268
source " $GITHUB_ACTION_PATH /lib/compile.sh"
271
269
tocss " $INPUT_PATH " " sass"
272
270
local DOCLEANUP=$( javascript $GITHUB_ACTION_PATH /src/check-cleanup.js " " ) && \
@@ -277,7 +275,7 @@ compile_assets() {
277
275
278
276
if [[ " ${COMPILE_SCSS,,} " == " true" ]]; then
279
277
PREPROCESSED=" y"
280
- checkForDartSass
278
+ # checkForDartSass
281
279
source " $GITHUB_ACTION_PATH /lib/compile.sh"
282
280
tocss " $INPUT_PATH " " scss"
283
281
local DOCLEANUP=$( javascript $GITHUB_ACTION_PATH /src/check-cleanup.js " " ) && \
You can’t perform that action at this time.
0 commit comments