mheffner / awsam

Amazon Web Services Account Manager (modeled after 'rvm')
MIT License
117 stars 8 forks source link

`aem use` fails when noclobber is set #31

Closed ggerrietts closed 7 years ago

ggerrietts commented 7 years ago

https://github.com/mheffner/awsam/blob/master/bashrc/rc.scr#L316 uses > ouput redirection which will fail when noclobber is set; >| is safer I think?

mheffner commented 7 years ago

@ggerrietts yeah, actually I think just switching it to >> would work, since we've already created the file.

mheffner commented 7 years ago

Nope, we reuse the file so it has to be >|.