Skip to content

Commit

Permalink
Add more pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
replaceafill committed Jan 24, 2024
1 parent 51d849b commit e3a167e
Show file tree
Hide file tree
Showing 59 changed files with 104 additions and 107 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/vagrant-box-archivematica.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
description:
description: Description
required: true
jobs:
jobs:
vagrant-box-archivematica:
name: Build and upload
runs-on: macos-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vagrant-box-atom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
description:
description: Description
required: true
jobs:
jobs:
vagrant-box-atom:
name: Build and upload
runs-on: macos-10.15
Expand Down
3 changes: 3 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-json
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.38.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion debs/bionic/acmetool/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ deb-build: deb-clean
cd /debbuild/$(NAME) && dpkg-buildpackage -k$(GPG_ID)
@echo "==> Copying built files."
mkdir -p $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/

deb-clean:
@echo "==> Cleaning up previous builds."
Expand Down
2 changes: 1 addition & 1 deletion debs/bionic/acmetool/debian/rules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/make -f

include /usr/share/dpkg/default.mk
include /usr/share/dpkg/vendor.mk
include /usr/share/dpkg/vendor.mk

# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
Expand Down
4 changes: 2 additions & 2 deletions debs/bionic/archivematica-storage-service/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COMMIT=$(git rev-parse HEAD)
cp -rf ${BASE}/debian-storage-service debian
yes | mk-build-deps -i debian/control
dch -v 1:${VERSION}${RELEASE}~18.04 commit: $(echo $COMMIT)
dch -v 1:${VERSION}${RELEASE}~18.04 checkout: $(echo $BRANCH)
dch -r --distribution bionic --urgency high ignored
dch -v 1:${VERSION}${RELEASE}~18.04 checkout: $(echo $BRANCH)
dch -r --distribution bionic --urgency high ignored
dpkg-buildpackage -us -uc
cd $SOURCE
2 changes: 1 addition & 1 deletion debs/bionic/archivematica-storage-service/changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ BRANCH="$(git branch | cut -d\ -f2-)"
COMMIT=$(git rev-parse HEAD)

dch -v 1:${VERSION}${RELEASE} commit: $(echo $COMMIT)
dch -v 1:${VERSION}${RELEASE} checkout: $(echo $BRANCH)
dch -v 1:${VERSION}${RELEASE} checkout: $(echo $BRANCH)
dch -r --distribution bionic --urgency high ignored
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WorkingDirectory=/usr/lib/archivematica/storage-service/
ExecStart=/usr/share/archivematica/virtualenvs/archivematica-storage-service/bin/gunicorn --config /etc/archivematica/storage-service.gunicorn-config.py storage_service.wsgi:application
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s TERM $MAINPID
PrivateTmp=true
PrivateTmp=true
Restart=always
RestartSec=30

Expand Down
4 changes: 2 additions & 2 deletions debs/bionic/bulk_extractor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ deb-build: deb-clean
@echo "==> Run bootstrap.sh."
cd /debbuild/$(NAME) && sh bootstrap.sh
@echo "==> Build package."
cd /debbuild/$(NAME) && dpkg-buildpackage
cd /debbuild/$(NAME) && dpkg-buildpackage
@echo "==> Copying built files."
mkdir -p $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/

deb-clean:
@echo "===> Install gpg key"
Expand Down
5 changes: 2 additions & 3 deletions debs/bionic/bulk_extractor/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Section: utils
Priority: extra
Maintainer: Artefactual Systems Inc. <[email protected]>
Standards-Version: 3.9.3
Build-Depends:
Build-Depends:
debhelper (>= 9),
dh-autoreconf,
build-essential,
Expand All @@ -20,5 +20,4 @@ Build-Depends:
Package: bulk-extractor
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Bulk Extractor (bulk_extractor) is a feature extraction tool written in C++ for extracting features from media images. Extracted features are stored in feature files that can be easily inspected, parsed, or processed with automated tools.

Description: Bulk Extractor (bulk_extractor) is a feature extraction tool written in C++ for extracting features from media images. Extracted features are stored in feature files that can be easily inspected, parsed, or processed with automated tools.
4 changes: 2 additions & 2 deletions debs/bionic/fits/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ deb-build: deb-clean
if [ -f "$(DOCKER_VOLUME)/GPG-KEY" ]; then gpg --import $(DOCKER_VOLUME)/GPG-KEY; fi
if [ x"$$GPG_KEY" != x ]; then echo "$$GPG_KEY" | gpg --import - ; fi
@echo "==> Apply patches."
cd /debbuild/$(NAME) && QUILT_PATCHES=debian/patches/ quilt push -a
cd /debbuild/$(NAME) && QUILT_PATCHES=debian/patches/ quilt push -a
@echo "==> Install dependencies."
cd /debbuild/$(NAME) && yes | mk-build-deps --install debian/control
@echo "==> Update changelog."
Expand All @@ -40,7 +40,7 @@ deb-build: deb-clean
cd /debbuild/$(NAME) && dpkg-buildpackage -k$(GPG_ID)
@echo "==> Copying built files."
mkdir -p $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/

deb-clean:
@echo "==> Cleaning up previous RPMs builds."
Expand Down
2 changes: 1 addition & 1 deletion debs/bionic/fits/debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The Debian packaging is:
# packaged work, as it may make Debian's contributions unacceptable upstream.
# If you just want it to be GPL version 3, leave the following lines in.

and is licensed under the GPL version 3,
and is licensed under the GPL version 3,
see `/usr/share/common-licenses/GPL-3'.

# Please also look if there are files or directories which have a
Expand Down
4 changes: 2 additions & 2 deletions debs/bionic/fits/debian/patches/archivematica-config.diff
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ Index: fits/xml/fits.xml
+ <tool class="edu.harvard.hul.ois.fits.tools.ffident.FFIdent" exclude-exts="dng,wps,vsd,ppt,rtf" classpath-dirs="lib/ffident" />
+ <tool class="edu.harvard.hul.ois.fits.tools.tika.TikaTool" classpath-dirs="lib/tika"/>
</tools>

<output>
<dataConsolidator class="edu.harvard.hul.ois.fits.consolidation.OISConsolidator"/>
- <display-tool-output>false</display-tool-output>
+ <display-tool-output>true</display-tool-output>
<report-conflicts>true</report-conflicts>
<report-conflicts>true</report-conflicts>
- <validate-tool-output>false</validate-tool-output>
+ <validate-tool-output>true</validate-tool-output>
<internal-output-schema>xml/fits_output.xsd</internal-output-schema>
Expand Down
4 changes: 2 additions & 2 deletions debs/bionic/fits/debian/patches/changehome.diff
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Index: fits/fits-env.sh
@@ -17,7 +17,7 @@ while [ -h "$FITS_ENV_SCRIPT" ] ; do
fi
done

-FITS_HOME=`dirname $FITS_ENV_SCRIPT`
+FITS_HOME="/usr/share/fits"

export FITS_HOME
6 changes: 3 additions & 3 deletions debs/bionic/fits/debian/patches/fits-logging.diff
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Index: fits/fits.sh
--- fits.orig/fits.sh
+++ fits/fits.sh
@@ -16,6 +16,6 @@ done

. "$(dirname $FITS_SCRIPT)/fits-env.sh"

-cmd="java -classpath \"$APPCLASSPATH\" edu.harvard.hul.ois.fits.Fits $args"
+cmd="java -Dlog4j.configuration=file:\"$FITS_HOME\"/log4j.properties -classpath \"$APPCLASSPATH\" edu.harvard.hul.ois.fits.Fits $args"

eval "exec $cmd"
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,17 @@ Index: fits/fits-ngserver.sh
@@ -6,6 +6,8 @@
# The one required parameter is the path to nailgun's jar; it can also be
# specified via the NAILGUN_JAR environment variable.

+test -r /etc/default/fits && . /etc/default/fits
+
. "$(dirname $BASH_SOURCE)/fits-env.sh"

if [[ ! $NAILGUN_JAR ]] && [[ ! $1 ]]; then
@@ -17,7 +19,7 @@
NAILGUN_JAR=$1
fi

-cmd="java -classpath \"$APPCLASSPATH:$NAILGUN_JAR\" com.martiansoftware.nailgun.NGServer"
+cmd="java -Xms${MAX_JAVA_HEAP_SIZE} -Xmx${MAX_JAVA_HEAP_SIZE} -XX:MaxMetaspaceSize=\"${MAX_JAVA_HEAP_SIZE}\" -Dlog4j.configuration=file:\"$FITS_HOME\"/log4j.properties -classpath \"$APPCLASSPATH:$NAILGUN_JAR\" com.martiansoftware.nailgun.NGServer"

echo "You may now run FITS by typing: ng edu.harvard.hul.ois.fits.Fits [options]" >&2

2 changes: 1 addition & 1 deletion debs/bionic/jhove/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ deb-build: deb-clean
dpkg-deb --build /debbuild/$(NAME)_$(VERSION)-$(RELEASE)
@echo "==> Copying built files."
mkdir -p $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.deb $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.deb $(DOCKER_VOLUME)/build/

deb-clean:
@echo "==> Cleaning up previous RPMs builds."
Expand Down
4 changes: 2 additions & 2 deletions debs/focal/bulk_extractor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ deb-build: deb-clean
@echo "==> Run bootstrap.sh."
cd /debbuild/$(NAME) && sh bootstrap.sh
@echo "==> Build package."
cd /debbuild/$(NAME) && dpkg-buildpackage
cd /debbuild/$(NAME) && dpkg-buildpackage
@echo "==> Copying built files."
mkdir -p $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/

deb-clean:
@echo "==> Cleaning up previous RPMs builds."
Expand Down
3 changes: 1 addition & 2 deletions debs/focal/bulk_extractor/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,4 @@ Build-Depends:
Package: bulk-extractor
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Bulk Extractor (bulk_extractor) is a feature extraction tool written in C++ for extracting features from media images. Extracted features are stored in feature files that can be easily inspected, parsed, or processed with automated tools.

Description: Bulk Extractor (bulk_extractor) is a feature extraction tool written in C++ for extracting features from media images. Extracted features are stored in feature files that can be easily inspected, parsed, or processed with automated tools.
4 changes: 2 additions & 2 deletions debs/focal/fits/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ deb-build: deb-clean
if [ -f "$(DOCKER_VOLUME)/GPG-KEY" ]; then gpg --import $(DOCKER_VOLUME)/GPG-KEY; fi
if [ x"$$GPG_KEY" != x ]; then echo "$$GPG_KEY" | gpg --import - ; fi
@echo "==> Apply patches."
cd /debbuild/$(NAME) && QUILT_PATCHES=debian/patches/ quilt push -a
cd /debbuild/$(NAME) && QUILT_PATCHES=debian/patches/ quilt push -a
@echo "==> Install dependencies."
cd /debbuild/$(NAME) && yes | mk-build-deps --install debian/control
@echo "==> Update changelog."
Expand All @@ -41,7 +41,7 @@ deb-build: deb-clean
cd /debbuild/$(NAME) && dpkg-buildpackage -k$(GPG_ID)
@echo "==> Copying built files."
mkdir -p $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/

deb-clean:
@echo "==> Cleaning up previous RPMs builds."
Expand Down
2 changes: 1 addition & 1 deletion debs/focal/fits/debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The Debian packaging is:
# packaged work, as it may make Debian's contributions unacceptable upstream.
# If you just want it to be GPL version 3, leave the following lines in.

and is licensed under the GPL version 3,
and is licensed under the GPL version 3,
see `/usr/share/common-licenses/GPL-3'.

# Please also look if there are files or directories which have a
Expand Down
4 changes: 2 additions & 2 deletions debs/focal/fits/debian/patches/archivematica-config.diff
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ Index: fits/xml/fits.xml
+ <tool class="edu.harvard.hul.ois.fits.tools.ffident.FFIdent" exclude-exts="dng,wps,vsd,ppt,rtf" classpath-dirs="lib/ffident" />
+ <tool class="edu.harvard.hul.ois.fits.tools.tika.TikaTool" classpath-dirs="lib/tika"/>
</tools>

<output>
<dataConsolidator class="edu.harvard.hul.ois.fits.consolidation.OISConsolidator"/>
- <display-tool-output>false</display-tool-output>
+ <display-tool-output>true</display-tool-output>
<report-conflicts>true</report-conflicts>
<report-conflicts>true</report-conflicts>
- <validate-tool-output>false</validate-tool-output>
+ <validate-tool-output>true</validate-tool-output>
<internal-output-schema>xml/fits_output.xsd</internal-output-schema>
Expand Down
4 changes: 2 additions & 2 deletions debs/focal/fits/debian/patches/changehome.diff
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Index: fits/fits-env.sh
@@ -17,7 +17,7 @@ while [ -h "$FITS_ENV_SCRIPT" ] ; do
fi
done

-FITS_HOME=`dirname $FITS_ENV_SCRIPT`
+FITS_HOME="/usr/share/fits"

export FITS_HOME
6 changes: 3 additions & 3 deletions debs/focal/fits/debian/patches/fits-logging.diff
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Index: fits/fits.sh
--- fits.orig/fits.sh
+++ fits/fits.sh
@@ -16,6 +16,6 @@ done

. "$(dirname $FITS_SCRIPT)/fits-env.sh"

-cmd="java -classpath \"$APPCLASSPATH\" edu.harvard.hul.ois.fits.Fits $args"
+cmd="java -Dlog4j.configuration=file:\"$FITS_HOME\"/log4j.properties -classpath \"$APPCLASSPATH\" edu.harvard.hul.ois.fits.Fits $args"

eval "exec $cmd"
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,17 @@ Index: fits/fits-ngserver.sh
@@ -6,6 +6,8 @@
# The one required parameter is the path to nailgun's jar; it can also be
# specified via the NAILGUN_JAR environment variable.

+test -r /etc/default/fits && . /etc/default/fits
+
. "$(dirname $BASH_SOURCE)/fits-env.sh"

if [[ ! $NAILGUN_JAR ]] && [[ ! $1 ]]; then
@@ -17,7 +19,7 @@
NAILGUN_JAR=$1
fi

-cmd="java -classpath \"$APPCLASSPATH:$NAILGUN_JAR\" com.martiansoftware.nailgun.NGServer"
+cmd="java -Xms${MAX_JAVA_HEAP_SIZE} -Xmx${MAX_JAVA_HEAP_SIZE} -XX:MaxMetaspaceSize=\"${MAX_JAVA_HEAP_SIZE}\" -Dlog4j.configuration=file:\"$FITS_HOME\"/log4j.properties -classpath \"$APPCLASSPATH:$NAILGUN_JAR\" com.martiansoftware.nailgun.NGServer"

echo "You may now run FITS by typing: ng edu.harvard.hul.ois.fits.Fits [options]" >&2

2 changes: 1 addition & 1 deletion debs/focal/jhove/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ deb-build: deb-clean
dpkg-deb --build /debbuild/$(NAME)_$(VERSION)-$(RELEASE)
@echo "==> Copying built files."
mkdir -p $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.deb $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.deb $(DOCKER_VOLUME)/build/

deb-clean:
@echo "==> Cleaning up previous RPMs builds."
Expand Down
2 changes: 1 addition & 1 deletion debs/focal/temporal-ui/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ override_dh_auto_install:
mv -v temporal-ui.conf.yml temporal.yml # Rename temporal-ui.conf.yml
mv -v ui-server temporal-ui # Rename temporal-ui binary
dh_install temporal-ui /usr/bin/ # Copy the binary in /usr/bin
dh_install temporal.yml /etc/temporal-ui/config/
dh_install temporal.yml /etc/temporal-ui/config/
# dh_install temporal-ui.service /etc/systemd/system/

override_dh_installsystemd:
Expand Down
4 changes: 2 additions & 2 deletions debs/jammy/archivematica-storage-service/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COMMIT=$(git rev-parse HEAD)
cp -rf ${BASE}/debian-storage-service debian
yes | mk-build-deps -i debian/control
dch -v 1:${VERSION}${RELEASE}~22.04 commit: $(echo $COMMIT)
dch -v 1:${VERSION}${RELEASE}~22.04 checkout: $(echo $BRANCH)
dch -r --distribution jammy --urgency high ignored
dch -v 1:${VERSION}${RELEASE}~22.04 checkout: $(echo $BRANCH)
dch -r --distribution jammy --urgency high ignored
dpkg-buildpackage -us -uc
cd $SOURCE
2 changes: 1 addition & 1 deletion debs/jammy/archivematica-storage-service/changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ BRANCH="$(git branch | cut -d\ -f2-)"
COMMIT=$(git rev-parse HEAD)

dch -v 1:${VERSION}${RELEASE} commit: $(echo $COMMIT)
dch -v 1:${VERSION}${RELEASE} checkout: $(echo $BRANCH)
dch -v 1:${VERSION}${RELEASE} checkout: $(echo $BRANCH)
dch -r --distribution jammy --urgency high ignored
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WorkingDirectory=/usr/lib/archivematica/storage-service/
ExecStart=/usr/share/archivematica/virtualenvs/archivematica-storage-service/bin/gunicorn --config /etc/archivematica/storage-service.gunicorn-config.py storage_service.wsgi:application
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s TERM $MAINPID
PrivateTmp=true
PrivateTmp=true
Restart=always
RestartSec=30

Expand Down
4 changes: 2 additions & 2 deletions debs/jammy/bulk_extractor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ deb-build: deb-clean
@echo "==> Run bootstrap.sh."
cd /debbuild/$(NAME) && sh bootstrap.sh
@echo "==> Build package."
cd /debbuild/$(NAME) && dpkg-buildpackage
cd /debbuild/$(NAME) && dpkg-buildpackage
@echo "==> Copying built files."
mkdir -p $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/

deb-clean:
@echo "==> Cleaning up previous RPMs builds."
Expand Down
3 changes: 1 addition & 2 deletions debs/jammy/bulk_extractor/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,4 @@ Build-Depends:
Package: bulk-extractor
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Bulk Extractor (bulk_extractor) is a feature extraction tool written in C++ for extracting features from media images. Extracted features are stored in feature files that can be easily inspected, parsed, or processed with automated tools.

Description: Bulk Extractor (bulk_extractor) is a feature extraction tool written in C++ for extracting features from media images. Extracted features are stored in feature files that can be easily inspected, parsed, or processed with automated tools.
4 changes: 2 additions & 2 deletions debs/jammy/fits/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ deb-build: deb-clean
if [ -f "$(DOCKER_VOLUME)/GPG-KEY" ]; then gpg --import $(DOCKER_VOLUME)/GPG-KEY; fi
if [ x"$$GPG_KEY" != x ]; then echo "$$GPG_KEY" | gpg --import - ; fi
@echo "==> Apply patches."
cd /debbuild/$(NAME) && QUILT_PATCHES=debian/patches/ quilt push -a
cd /debbuild/$(NAME) && QUILT_PATCHES=debian/patches/ quilt push -a
@echo "==> Install dependencies."
cd /debbuild/$(NAME) && yes | mk-build-deps --install debian/control
@echo "==> Update changelog."
Expand All @@ -41,7 +41,7 @@ deb-build: deb-clean
cd /debbuild/$(NAME) && dpkg-buildpackage -k$(GPG_ID)
@echo "==> Copying built files."
mkdir -p $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/
cp $(DEB_TOPDIR)/*.* $(DOCKER_VOLUME)/build/

deb-clean:
@echo "==> Cleaning up previous RPMs builds."
Expand Down
Loading

0 comments on commit e3a167e

Please sign in to comment.