fix path
This commit is contained in:
parent
2e7f1db841
commit
98f7a5f2d7
1 changed files with 4 additions and 4 deletions
|
@ -118,17 +118,17 @@ if [ "${current_tag}" != "${tag}" ]; then
|
|||
echo "Running bundle install..."
|
||||
fi
|
||||
if [ "${dummy}" == "true" ]; then
|
||||
echo sudo -u mastodon "${mastodon_home}/bin/bundle" install
|
||||
echo sudo -u mastodon "${mastodon_home}/.rbenv/bin/bundle" install
|
||||
else
|
||||
sudo -u mastodon "${mastodon_home}/bin/bundle" install
|
||||
sudo -u mastodon "${mastodon_home}/.rbenv/bin/bundle" install
|
||||
fi
|
||||
if [ "${DEBUG}" == "true" ]; then
|
||||
echo "Running yarm install..."
|
||||
fi
|
||||
if [ "${dummy}" == "true" ]; then
|
||||
echo sudo -u mastodon "${mastodon_home}/bin/yarn" install --frozen-lockfile
|
||||
echo sudo -u mastodon "${mastodon_home}/.rbenv/bin/yarn" install --frozen-lockfile
|
||||
else
|
||||
sudo -u mastodon "${mastodon_home}/bin/yarn" install --frozen-lockfile
|
||||
sudo -u mastodon "${mastodon_home}/.rbenv/bin/yarn" install --frozen-lockfile
|
||||
fi
|
||||
if [ "${DEBUG}" == "true" ]; then
|
||||
echo "Restarting Mastodon services..."
|
||||
|
|
Loading…
Reference in a new issue