Changeset 71023 in vbox for trunk/src/bldprogs/scmrw.cpp
- Timestamp:
- Feb 15, 2018 2:05:32 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/scmrw.cpp
r70834 r71023 1018 1018 if (strcmp(pszSyncProcess, "export") != 0) 1019 1019 ScmError(pState, VERR_INVALID_STATE, 1020 "svn:sync-process=export, but parent directory differs: %s\n", pszParentSyncProcess); 1020 "svn:sync-process=export, but parent directory differs: %s\n" 1021 "WARNING! Make sure to unexport everything inside the directory first!\n" 1022 " Then you may export the directory and stuff inside it if you want.\n" 1023 " (Just exporting the directory will not make anything inside it externally visible.)\n" 1024 , pszParentSyncProcess); 1021 1025 RTStrFree(pszParentSyncProcess); 1022 1026 } 1023 1027 else if (rc == VERR_NOT_FOUND) 1024 ScmError(pState, VERR_NOT_FOUND, "svn:sync-process=export, but parent directory is not exported!\n"); 1028 ScmError(pState, VERR_NOT_FOUND, 1029 "svn:sync-process=export, but parent directory is not exported!\n" 1030 "WARNING! Make sure to unexport everything inside the directory first!\n" 1031 " Then you may export the directory and stuff inside it if you want.\n" 1032 " (Just exporting the directory will not make anything inside it externally visible.)\n"); 1025 1033 else 1026 1034 ScmError(pState, rc, "ScmSvnQueryParentProperty: %Rrc\n", rc);
Note:
See TracChangeset
for help on using the changeset viewer.