Skip to content

Commit bf0de55

Browse files
committed
testing apt-get support
1 parent 00b9d56 commit bf0de55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/compile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ done
4848

4949
# Install any application specific system dependencies
5050
if [ -f $BUILD_DIR/Aptfile ]; then
51+
status "Aptfile found."
5152
APT_CACHE_DIR="$CACHE_DIR/apt/cache"
5253
APT_STATE_DIR="$CACHE_DIR/apt/state"
5354
APT_OPTIONS="-o debug::nolocking=true -o dir::cache=$APT_CACHE_DIR -o dir::state=$APT_STATE_DIR"
@@ -64,7 +65,7 @@ if [ -f $BUILD_DIR/Aptfile ]; then
6465
done
6566

6667
for DEB in $(ls -1 $APT_CACHE_DIR/archives/*.deb); do
67-
topic "Installing $(basename $DEB)"
68+
status "Installing $(basename $DEB)"
6869
dpkg -x $DEB $BUILD_DIR/.apt/
6970
done
7071
else

0 commit comments

Comments
 (0)