Skip to content

Commit ef37c78

Browse files
committed
fixing version string
Signed-off-by: vsoch <vsochat@stanford.edu>
1 parent 3a678cd commit ef37c78

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

cmd/scif/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func init() {
5353
ScifCmd.SetUsageTemplate(docs.UseTemplate)
5454

5555
// Set a custom version template string
56-
vt := fmt.Sprintf("scif version {{printf \"%%s\" .Version}}\n", version.Version)
56+
vt := fmt.Sprintf("{{printf \"%%s\" .Version}}\n")
5757
ScifCmd.SetVersionTemplate(vt)
5858

5959
ScifCmd.Flags().BoolVarP(&debug, "debug", "d", false, "print debugging information (highest verbosity)")

pkg/client/client.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ func NewScifClient() *ScifClient {
7272
base := getenv("SCIF_BASE", getStringDefault("BASE"))
7373
scifApps := getenvNamespace("SCIF_APP")
7474

75-
fmt.Printf("scientific filesystem base %s", base)
76-
7775
// Set the default apps and data (overridden if user sets)
7876
data := fmt.Sprintf(path.Join(base, "data"))
7977
apps := fmt.Sprintf(path.Join(base, "apps"))

0 commit comments

Comments
 (0)