@@ -55,10 +55,10 @@ func runRemove(dockerCli command.Cli, installationName string, opts removeOption
5555 return
5656 }
5757 if err := installationStore .Delete (installationName ); err != nil {
58- fmt .Fprintf (os .Stderr , "failed to force deletion of installation %q: %s\n " , installationName , err )
58+ fmt .Fprintf (os .Stderr , "failed to force deletion of running App %q: %s\n " , installationName , err )
5959 return
6060 }
61- fmt .Fprintf (os .Stderr , "deletion forced for installation %q\n " , installationName )
61+ fmt .Fprintf (os .Stderr , "deletion forced for running App %q\n " , installationName )
6262 }()
6363 }
6464 bind , err := cnab .RequiredClaimBindMount (installation .Claim , opts .targetContext , dockerCli )
@@ -83,8 +83,8 @@ func runRemove(dockerCli command.Cli, installationName string, opts removeOption
8383 return fmt .Errorf ("Remove failed: %s\n %s" , err , errBuf )
8484 }
8585 if err := installationStore .Delete (installationName ); err != nil {
86- return fmt .Errorf ("Failed to delete installation %q from the installation store: %s" , installationName , err )
86+ return fmt .Errorf ("Failed to delete running App %q from the installation store: %s" , installationName , err )
8787 }
88- fmt .Fprintf (os .Stdout , "Application %q uninstalled on context %q\n " , installationName , opts .targetContext )
88+ fmt .Fprintf (os .Stdout , "App %q uninstalled on context %q\n " , installationName , opts .targetContext )
8989 return nil
9090}
0 commit comments