Skip to content

Commit

Permalink
fix(build): fxid sed command for publish artifacts (js)
Browse files Browse the repository at this point in the history
  • Loading branch information
pimenovoleg committed Jun 8, 2018
1 parent e42f63f commit fbe1ef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deploy/publish-artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ publishPackage() {
# Replace the version in every file recursively with a more specific version that also includes
# the SHA of the current build job. Normally this "sed" call would just replace the version
# placeholder, but the version placeholders have been replaced by the release task already.
sed -i "s/${buildVersion}/${buildVersionName}/g" $(find . -type f -not -path '*\/.*' ! -iname '*.css')
sed -i "s/${buildVersion}/${buildVersionName}/g" $(find . -type f -not -path '*\/.*' ! -iname '*.css' ! -iname '*.js')

echo "Updated the build version in every file to include the SHA of the latest commit."

Expand Down

0 comments on commit fbe1ef1

Please sign in to comment.