We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00b9d56 commit bf0de55Copy full SHA for bf0de55
bin/compile
@@ -48,6 +48,7 @@ done
48
49
# Install any application specific system dependencies
50
if [ -f $BUILD_DIR/Aptfile ]; then
51
+ status "Aptfile found."
52
APT_CACHE_DIR="$CACHE_DIR/apt/cache"
53
APT_STATE_DIR="$CACHE_DIR/apt/state"
54
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
64
65
done
66
67
for DEB in $(ls -1 $APT_CACHE_DIR/archives/*.deb); do
- topic "Installing $(basename $DEB)"
68
+ status "Installing $(basename $DEB)"
69
dpkg -x $DEB $BUILD_DIR/.apt/
70
71
else
0 commit comments