entrypoint.sh: removed quotes from conditional statement

This commit is contained in:
Sameer Naik 2015-07-01 15:40:31 +05:30
parent a84c01736e
commit 6a239a2179

View File

@ -832,7 +832,7 @@ appRake () {
done
read -p "Select a backup to restore: " file
if [[ ! -f "${GITLAB_BACKUP_DIR}/${file}" ]]; then
if [[ ! -f ${GITLAB_BACKUP_DIR}/${file} ]]; then
echo "Specified backup does not exist. Aborting..."
return 1
fi