We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37b57bb commit 13613f3Copy full SHA for 13613f3
1 file changed
GVFS/GVFS.Hooks/Program.cs
@@ -69,7 +69,7 @@ public static void Main(string[] args)
69
RunLockRequest(args, unattended, ReleaseGVFSLock);
70
}
71
72
- RunPostCommands(args);
+ RunPostCommands(args, unattended);
73
break;
74
75
default:
@@ -95,9 +95,12 @@ private static void RunPreCommands(string[] args)
95
96
97
98
- private static void RunPostCommands(string[] args)
+ private static void RunPostCommands(string[] args, bool unattended)
99
{
100
- RemindUpgradeAvailable();
+ if (!unattended)
101
+ {
102
+ RemindUpgradeAvailable();
103
+ }
104
105
106
private static void RemindUpgradeAvailable()
0 commit comments