Skip to content

Commit bcb9029

Browse files
authored
Merge pull request #227 from ianjsikes/patch-1
Fix entrypoint_user_scripts.sh to call correct startup script
2 parents 93730fd + 6ce193e commit bcb9029

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- If no candidates are found during an import, we now show a message instead of an empty screen. [#190](https://github.com/pSpitzner/beets-flask/issues/190)
2020
- Archive files can now be deleted [#217](https://github.com/pSpitzner/beets-flask/issues/217)
2121
- Import Bootleg Button now works as expected [#218](https://github.com/pSpitzner/beets-flask/issues/218)
22+
- Startup script was not executed correctly if placed in `/config/beets-flask/startup.sh` [#227](https://github.com/pSpitzner/beets-flask/pull/227)
2223

2324
### Added
2425

docker/entrypoints/entrypoint_user_scripts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ -f /config/startup.sh ]; then
77
fi
88
if [ -f /config/beets-flask/startup.sh ]; then
99
echo "Running user startup script from /config/beets-flask/startup.sh"
10-
/config/startup.sh
10+
/config/beets-flask/startup.sh
1111
fi
1212

1313

0 commit comments

Comments
 (0)