improvement: check, if opsi file exists in the repos (not checking only the directory)

This commit is contained in:
Daniel Schwager 2012-02-01 23:34:14 +01:00
parent 14537d40ca
commit aca88bc063
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ builder_config() {
builder_prepare() {
# Check if the package is still build
if [ -z "$OPSI_REPOS_FORCE_UPLOAD" ] && [ -d ${OPSI_REPOS_PRODUCT_DIR} ] ; then
if [ -z "$OPSI_REPOS_FORCE_UPLOAD" ] && [ -f "${OPSI_REPOS_PRODUCT_DIR}/${OPSI_REPOS_FILE_PATTERN}.opsi" ] ; then
echo "Directory ${OPSI_REPOS_PRODUCT_DIR} already exists."
exit 1
fi