diff options
-rw-r--r-- | lib/mixlib/shellout/windows.rb | 2 | ||||
-rw-r--r-- | spec/mixlib/shellout/windows_spec.rb | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/mixlib/shellout/windows.rb b/lib/mixlib/shellout/windows.rb index 75cfd51..27adbbd 100644 --- a/lib/mixlib/shellout/windows.rb +++ b/lib/mixlib/shellout/windows.rb @@ -221,7 +221,7 @@ module Mixlib end # cmd does not parse multiple quotes well unless the whole thing is wrapped up in quotes. - # https://github.com/opscode/mixlib-shellout/pull/2#issuecomment-4837859 + # https://github.com/chef/mixlib-shellout/pull/2#issuecomment-4837859 # http://ss64.com/nt/syntax-esc.html def run_under_cmd(command) [ ENV["COMSPEC"], "cmd /c \"#{command}\"" ] diff --git a/spec/mixlib/shellout/windows_spec.rb b/spec/mixlib/shellout/windows_spec.rb index 4a94eb4..d4edabc 100644 --- a/spec/mixlib/shellout/windows_spec.rb +++ b/spec/mixlib/shellout/windows_spec.rb @@ -18,7 +18,7 @@ describe "Mixlib::ShellOut::Windows", :windows_only do context "when unquoted" do with_command(%q{ruby -e 'prints "foobar"'}) { is_expected.not_to be_truthy } - # https://github.com/opscode/mixlib-shellout/pull/2#issuecomment-4825574 + # https://github.com/chef/mixlib-shellout/pull/2#issuecomment-4825574 with_command(%q{"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\gacutil.exe" /i "C:\Program Files (x86)\NUnit 2.6\bin\framework\nunit.framework.dll"}) { is_expected.not_to be_truthy } with_command(%q{ruby -e 'exit 1' | ruby -e 'exit 0'}) { is_expected.to be_truthy } @@ -255,7 +255,7 @@ describe "Mixlib::ShellOut::Windows", :windows_only do is_expected.to eql([ 'C:\Windows\system32/ping.EXE', "ping" ]) end - # https://github.com/opscode/mixlib-shellout/pull/2 with bat file + # https://github.com/chef/mixlib-shellout/pull/2 with bat file with_command('"C:\Program Files\Application\Start.bat"', filename: 'C:\Program Files\Application\Start.bat') do is_expected.to eql([ comspec, 'cmd /c ""C:\Program Files\Application\Start.bat""' ]) end @@ -266,7 +266,7 @@ describe "Mixlib::ShellOut::Windows", :windows_only do is_expected.to eql([ comspec, 'cmd /c ""C:\Program Files\Application\Start.bat" /i "C:\Program Files (x86)\NUnit 2.6\bin\framework\nunit.framework.dll""' ]) end - # https://github.com/opscode/mixlib-shellout/pull/2 with cmd file + # https://github.com/chef/mixlib-shellout/pull/2 with cmd file with_command('"C:\Program Files\Application\Start.cmd"', filename: 'C:\Program Files\Application\Start.cmd') do is_expected.to eql([ comspec, 'cmd /c ""C:\Program Files\Application\Start.cmd""' ]) end @@ -277,7 +277,7 @@ describe "Mixlib::ShellOut::Windows", :windows_only do is_expected.to eql([ comspec, 'cmd /c ""C:\Program Files\Application\Start.cmd" /i "C:\Program Files (x86)\NUnit 2.6\bin\framework\nunit.framework.dll""' ]) end - # https://github.com/opscode/mixlib-shellout/pull/2 with unquoted exe file + # https://github.com/chef/mixlib-shellout/pull/2 with unquoted exe file with_command('C:\RUBY192\bin\ruby.exe', filename: 'C:\RUBY192\bin\ruby.exe') do is_expected.to eql([ 'C:\RUBY192\bin\ruby.exe', 'C:\RUBY192\bin\ruby.exe' ]) end @@ -288,7 +288,7 @@ describe "Mixlib::ShellOut::Windows", :windows_only do is_expected.to eql([ 'C:\RUBY192\bin\ruby.exe', 'C:\RUBY192\bin\ruby.exe -e "print \'fee fie foe fum\'"' ]) end - # https://github.com/opscode/mixlib-shellout/pull/2 with quoted exe file + # https://github.com/chef/mixlib-shellout/pull/2 with quoted exe file exe_with_spaces = 'C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\gacutil.exe' with_command("\"#{exe_with_spaces}\"", filename: exe_with_spaces) do is_expected.to eql([ exe_with_spaces, "\"#{exe_with_spaces}\"" ]) |