Skip to content

Commit

Permalink
Fix entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
antlafarge committed Jul 16, 2024
1 parent ef037d6 commit 1ded684
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,10 @@ fi
# Enable auto-update
autoUpdateEventScripterSettings="org.jdownloader.extensions.eventscripter.EventScripterExtension.json"
if [ ! -f "${cfgDir}${autoUpdateEventScripterSettings}" ]; then
log "cp" "./$autoUpdateEventScripterSettings" "${cfg}${autoUpdateEventScripterSettings}"
cp "./$autoUpdateEventScripterSettings" "${cfg}${autoUpdateEventScripterSettings}"
cp "./$autoUpdateEventScripterSettings" "${cfgDir}${autoUpdateEventScripterSettings}"
fi
autoUpdateEventScripterScript="org.jdownloader.extensions.eventscripter.EventScripterExtension.scripts.json"
if [ ! -f "${cfgDir}${autoUpdateEventScripterScript}" ]; then
log "cp" "./$autoUpdateEventScripterScript" "${cfgDir}${autoUpdateEventScripterScript}"
cp "./$autoUpdateEventScripterScript" "${cfgDir}${autoUpdateEventScripterScript}"
fi

Expand Down

0 comments on commit 1ded684

Please sign in to comment.