diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-02-16 15:59:55 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-02-16 15:59:55 +0200 |
commit | a2a5cd9c696d0d6f2c14b8831e62caf24d16fa50 (patch) | |
tree | 165df39ff93f06442aef312f918c00f5deeac1cd /src/apk.c | |
parent | 445ea072205cfb2d9ecd9ffb28d88023d5d24ea5 (diff) | |
download | apk-tools-a2a5cd9c696d0d6f2c14b8831e62caf24d16fa50.tar.gz apk-tools-a2a5cd9c696d0d6f2c14b8831e62caf24d16fa50.tar.bz2 apk-tools-a2a5cd9c696d0d6f2c14b8831e62caf24d16fa50.tar.xz apk-tools-a2a5cd9c696d0d6f2c14b8831e62caf24d16fa50.zip |
fetch: allow enabling --simulate
Diffstat (limited to 'src/apk.c')
-rw-r--r-- | src/apk.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -106,6 +106,9 @@ static int option_parse_global(void *ctx, struct apk_db_options *dbopts, int opt case 0x101: apk_flags |= APK_PROGRESS; break; + case 0x104: + apk_flags |= APK_SIMULATE; + break; case 0x110: apk_flags &= ~APK_PROGRESS; break; |