125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
-
+
|
printf("%s\n", zFilename);
continue;
}
zQFilename = quoteFilename(zFilename);
zSyscmd = mprintf("%s %s %s", zFossil, zCmd, zQFilename);
printf("%s\n", zSyscmd);
fflush(stdout);
system(zSyscmd);
portable_system(zSyscmd);
free(zSyscmd);
free(zQFilename);
}
/* If any repositories hows names appear in the ~/.fossil file could not
** be found, remove those names from the ~/.fossil file.
*/
|