Created
March 26, 2014 21:01
-
-
Save chrisamoore/9793411 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vcsrepo { '/vagrant/repo': | |
ensure => present, | |
provider => git, | |
source => '[email protected]:repo/repo.git', | |
require => Exec['bouncer'] | |
} | |
//// Returns | |
bash: warning: setlocale: LC_ALL: cannot change locale (en_US) | |
remote: Counting objects: 476, done. | |
remote: Compressing objects: 100% (287/287), done. | |
... | |
bash: warning: setlocale: LC_ALL: cannot change locale (en_US) ; | |
.... | |
remote: Total 476 (delta 277), reused 376 (delta 180) | |
Receiving objects: 100% (476/476), 2.43 MiB, done. | |
Resolving deltas: 100% (277/277), done. | |
//// solves | |
export LC_ALL="en_US.UTF-8" | |
... | |
remote: Counting objects: 476, done. | |
remote: Compressing objects: 100% (287/287), done. | |
remote: Total 476 (delta 277), reused 376 (delta 180) | |
Receiving objects: 100% (476/476), 2.43 MiB, done. | |
Resolving deltas: 100% (277/277), done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment