Skip to content

Commit 6d54350

Browse files
committed
Remove all .DS_Store files
1 parent 9c1dc6a commit 6d54350

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/build-static

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,16 +179,16 @@ if [[ $LATEST -ne 1 ]]; then
179179
# Create a file containing the version
180180
echo "${PKG_VERSION}" > ${BUILD_DIR}/VERSION.txt
181181

182-
# Remove .DS_Store files
183-
runCmd find ${BUILD_DIR} -name '.DS_Store' -exec rm {} \;
184-
185182
# Create a tarball of the version
186183
runCmd tar -czf ${BUILD_TGZ} -C ${BUILD_PAR} ${VERSION}
187184
fi;
188185

189186
echo "Building Hosted Version..."
190187
FINGERPRINT="${FINGERPRINT}" RANCHER="" CATALOG="" BASE_ASSETS="//${CDN}/${VERSION}/" runCmd ./node_modules/.bin/ember build --environment=${ENVIRONMENT} --output-path=${BUILD_DIR}
191188

189+
# Remove .DS_Store files
190+
runCmd find ${BUILD_DIR} -name '.DS_Store' -exec rm {} \;
191+
192192
# Create a file containing the version
193193
echo "${PKG_VERSION}" > ${BUILD_DIR}/VERSION.txt
194194

0 commit comments

Comments
 (0)