@@ -13,8 +13,7 @@ func buildInitCommand() *cobra.Command {
1313 var cmd = & cobra.Command {
1414 // IMPORTANT: never color Use! You will not be able to run the command otherwise.
1515 Use : "DSR_INIT" ,
16- Short : "creates dev.sh and dev_setup.sh in current folder" ,
17- Long : "This creates an example create a dev.sh and dev_setup.sh in your current directory." ,
16+ Short : "creates dev.sh and dev_utilities.sh in the current folder" ,
1817 Args : cobra .NoArgs ,
1918 GroupID : utils .GROUP_ID_UTILS ,
2019
@@ -24,17 +23,17 @@ func buildInitCommand() *cobra.Command {
2423 log .Fatalf ("Failed to execute: '%s'" , err .Error ())
2524 }
2625 devShTargetPath := filepath .Join (currentDirectory , "dev.sh" )
27- devSetupShTargetPath := filepath .Join (currentDirectory , "dev_setup .sh" )
26+ devSetupShTargetPath := filepath .Join (currentDirectory , "dev_utilities .sh" )
2827
2928 if ! utils .FileExists (devShTargetPath ) {
3029 // we can access embedded assets by using the path use din the annotation
3130 utils .CopyAssetToPath ("templates/dev.sh" , devShTargetPath )
3231 if ! utils .FileExists (devSetupShTargetPath ) {
33- // We do not want to add dev_setup.sh if INIT was already run.
32+ // We do not want to add dev_utilities if INIT was already run.
3433 // The file might have been deleted on purpose.
35- utils .CopyAssetToPath ("templates/dev_setup .sh" , devSetupShTargetPath )
34+ utils .CopyAssetToPath ("templates/dev_utilities .sh" , devSetupShTargetPath )
3635 } else {
37- color .Yellow .Println ("dev_setup .sh is already present!" )
36+ color .Yellow .Println ("dev_utilities .sh is already present!" )
3837 }
3938 } else {
4039 color .Yellow .Println ("dev.sh is already present." )
0 commit comments