onatcipli / rename

The Rename CLI Tool is a utility designed to modify your Flutter project's AppName and BundleId across various platforms, such as iOS, Android, Macos, Linux, Windows and Web
https://pub.dev/packages/rename
MIT License
164 stars 39 forks source link

Default Usage commands not working #42

Closed guyluz11 closed 1 year ago

guyluz11 commented 1 year ago
> pub global run rename --appname "appName"     
pub : The term 'pub' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling 
of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ pub global run rename --appname "appName"
+ ~~~
    + CategoryInfo          : ObjectNotFound: (pub:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

So the lines in the readme file

    pub global run rename --bundleId com.onatcipli.networkUpp
    pub global run rename --appname "Network Upp"

Need to become

    flutter pub global run rename --bundleId com.onatcipli.networkUpp
    flutter pub global run rename --appname "Network Upp"

image

guyluz11 commented 1 year ago

It looks like this is already the correct way in the readme file in the main branch.

So will keep this open until it will get uploaded to the pub.dev

onatcipli commented 1 year ago

fixed