File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,13 +51,12 @@ chmod -R 775 \
5151# -----------------------------------------------------------------------------
5252# GoExport Binary Check
5353# -----------------------------------------------------------------------------
54- GOEXPORT_BIN=" /var/www/html/bin/goexport/goexport "
54+ GOEXPORT_BIN=" /var/www/html/bin/goexport/GoExport_CLI "
5555
5656if [ -f " $GOEXPORT_BIN " ]; then
5757 echo " [✓] GoExport binary present"
5858else
5959 echo " [!] WARNING: GoExport binary not found at $GOEXPORT_BIN "
60- echo " [!] The binary should be installed during Docker build"
6160fi
6261
6362# -----------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -224,7 +224,8 @@ RUN mkdir -p /var/www/html/bin/goexport \
224224 && wget -q https://github.com/GoExport/GoExport/releases/latest/download/goexport_linux_portable_amd64.tar.gz \
225225 && tar -xzf goexport_linux_portable_amd64.tar.gz \
226226 && rm goexport_linux_portable_amd64.tar.gz \
227- && chmod +x goexport 2>/dev/null || true
227+ && mv goexport GoExport_CLI 2>/dev/null || true \
228+ && chmod +x GoExport_CLI 2>/dev/null || true
228229
229230# =============================================================================
230231# Permissions & Storage
You can’t perform that action at this time.
0 commit comments