Fossil SCM
It turns out that fossil globally consumes the --quiet flag: touch now accounts for that.
Commit
519af48c8c025f27f18b99488240555372ecf5063ae121bd962c92b6b2d4ebe0
Parent
adbbeac1515ce91…
1 file changed
+1
-1
+1
-1
| --- src/file.c | ||
| +++ src/file.c | ||
| @@ -1923,11 +1923,11 @@ | ||
| 1923 | 1923 | i64 nowTime = 0; /* Timestamp of --now or --checkout */ |
| 1924 | 1924 | Stmt q; |
| 1925 | 1925 | Blob absBuffer = empty_blob; /* Absolute filename buffer */ |
| 1926 | 1926 | |
| 1927 | 1927 | verboseFlag = find_option("verbose","v",0)!=0; |
| 1928 | - quietFlag = find_option("quiet","q",0)!=0; | |
| 1928 | + quietFlag = find_option("quiet","q",0)!=0 || g.fQuiet; | |
| 1929 | 1929 | dryRunFlag = find_option("dry-run","n",0)!=0 |
| 1930 | 1930 | || find_option("dryrun",0,0)!=0; |
| 1931 | 1931 | zGlobList = find_option("glob", "g",1); |
| 1932 | 1932 | zGlobFile = find_option("globfile", "G",1); |
| 1933 | 1933 | |
| 1934 | 1934 |
| --- src/file.c | |
| +++ src/file.c | |
| @@ -1923,11 +1923,11 @@ | |
| 1923 | i64 nowTime = 0; /* Timestamp of --now or --checkout */ |
| 1924 | Stmt q; |
| 1925 | Blob absBuffer = empty_blob; /* Absolute filename buffer */ |
| 1926 | |
| 1927 | verboseFlag = find_option("verbose","v",0)!=0; |
| 1928 | quietFlag = find_option("quiet","q",0)!=0; |
| 1929 | dryRunFlag = find_option("dry-run","n",0)!=0 |
| 1930 | || find_option("dryrun",0,0)!=0; |
| 1931 | zGlobList = find_option("glob", "g",1); |
| 1932 | zGlobFile = find_option("globfile", "G",1); |
| 1933 | |
| 1934 |
| --- src/file.c | |
| +++ src/file.c | |
| @@ -1923,11 +1923,11 @@ | |
| 1923 | i64 nowTime = 0; /* Timestamp of --now or --checkout */ |
| 1924 | Stmt q; |
| 1925 | Blob absBuffer = empty_blob; /* Absolute filename buffer */ |
| 1926 | |
| 1927 | verboseFlag = find_option("verbose","v",0)!=0; |
| 1928 | quietFlag = find_option("quiet","q",0)!=0 || g.fQuiet; |
| 1929 | dryRunFlag = find_option("dry-run","n",0)!=0 |
| 1930 | || find_option("dryrun",0,0)!=0; |
| 1931 | zGlobList = find_option("glob", "g",1); |
| 1932 | zGlobFile = find_option("globfile", "G",1); |
| 1933 | |
| 1934 |