671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
|
# Fossil. The fileNames argument is a list of (fully?) qualified
# local file names to stage.
#
# <public>
proc stagePackageFiles { language version platform fileNames } {
variable checkoutDirectory
variable fossilAddCommand
variable fossilUpdateCommand
if {![verifyThereAreNoChanges]} then {
error "cannot stage package files: there are pending changes"
}
if {![verifyThisIsTheCorrectProject]} then {
error "cannot stage package files: wrong project"
|
<
|
671
672
673
674
675
676
677
678
679
680
681
682
683
684
|
# Fossil. The fileNames argument is a list of (fully?) qualified
# local file names to stage.
#
# <public>
proc stagePackageFiles { language version platform fileNames } {
variable checkoutDirectory
variable fossilAddCommand
if {![verifyThereAreNoChanges]} then {
error "cannot stage package files: there are pending changes"
}
if {![verifyThisIsTheCorrectProject]} then {
error "cannot stage package files: wrong project"
|