Skip to content

Commit

Permalink
Update docker-entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
otherguy authored Jan 2, 2020
1 parent d27eede commit f22d316
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ if [[ -z "$DROPBOX_SKIP_UPDATE" ]]; then
rm -rf /opt/dropbox/bin/*
mv $tmpdir/.dropbox-dist/* /opt/dropbox/bin/
rm -rf $tmpdir
find /opt/dropbox -type f -name "*.so" -exec chmod a+rx {} \;
find /opt/dropbox/bin -type f -name "*.so" -exec chmod a+rx {} \;
find /opt/dropbox/bin -type f -name "*.so" -exec chown dropbox {} \;

echo "Dropbox updated to v$Latest"
else
Expand Down

0 comments on commit f22d316

Please sign in to comment.