make config settings for locking the path
This commit is contained in:
parent
d981b93728
commit
3ec4b29886
|
@ -35,7 +35,9 @@ message ForgeConfig { // `autogenpb:nom
|
||||||
|
|
||||||
google.protobuf.Timestamp verstamp = 12; // the git commit timestamp of the version
|
google.protobuf.Timestamp verstamp = 12; // the git commit timestamp of the version
|
||||||
string goSrc = 13; // is ~/go/src unless a go.work file is found
|
string goSrc = 13; // is ~/go/src unless a go.work file is found
|
||||||
|
string namespace = 14; // `autogenpb:unique` `autogenpb:sort`
|
||||||
}
|
}
|
||||||
|
|
||||||
enum ForgeMode {
|
enum ForgeMode {
|
||||||
MASTER = 0; // "release mode"
|
MASTER = 0; // "release mode"
|
||||||
DEVEL = 1; // "patch mode"
|
DEVEL = 1; // "patch mode"
|
||||||
|
@ -51,6 +53,8 @@ message ForgeConfigs { // `autogenpb:mar
|
||||||
repeated string xtermArgv = 6; // the argv line for xterm
|
repeated string xtermArgv = 6; // the argv line for xterm
|
||||||
string defaultGui = 7; // default GUI plugin to use
|
string defaultGui = 7; // default GUI plugin to use
|
||||||
ForgeMode mode = 8; // what "mode" forge is in
|
ForgeMode mode = 8; // what "mode" forge is in
|
||||||
|
string goSrc = 9; // is ~/go/src unless a go.work file is found
|
||||||
|
bool pathLock = 10; // the path is locked
|
||||||
}
|
}
|
||||||
// this generic message is used by autogen to identify and
|
// this generic message is used by autogen to identify and
|
||||||
// then dump the uuid and version from any arbitrary .pb file
|
// then dump the uuid and version from any arbitrary .pb file
|
||||||
|
|
Loading…
Reference in New Issue