fastlane-plugin-msbuild 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83884235202f7c83cd2249c02574ec34c702f322
4
- data.tar.gz: 277066aa5f726aa108fa584f9022e47d77305411
3
+ metadata.gz: d2af588c45a85e577082f5f7ad5f2ca4ed54d2d1
4
+ data.tar.gz: 005ca940f056c3f217f376d30a09ce071760a30d
5
5
  SHA512:
6
- metadata.gz: d1543b8191203f58a58c50f155f25a8e3483e68ee31d03d1d1f287ecd92a8935d9c7af0dcb1bf47da2799f7d142f841f48f02a0003875febd36a4d3472eb8e53
7
- data.tar.gz: 3897f69461e1649935db258a7f8039edf2831838bac763cc7f28d25112869503201fc703586f6abf7ee28e11a9001294a1c4f5253ea44c6838c68c1b68fef59d
6
+ metadata.gz: 0ce1789d2f6ab389f3defa81354e84d7f58881b312eae27d9d6608a2d4450a225f673495270a5307068ad979aae6d9301776a738b1e8ad6a6a901f066b9a1c43
7
+ data.tar.gz: 036b146726d6fdd65d133cb8d742f092a8dd75ac74e5dc42bebe2b270527e903f0e3df8d5eccb869653045db29b5601f34760f1935cd71d0452b9665859fc3d5
@@ -30,7 +30,7 @@ module Fastlane
30
30
  end
31
31
  out.close
32
32
  else
33
- UI.error("You should supply rev_number or version_number but not botha")
33
+ UI.error("You should supply rev_number or version_number but not both")
34
34
  raise
35
35
  end
36
36
  end
@@ -7,13 +7,13 @@ module Fastlane
7
7
  solution = params[:solution]
8
8
 
9
9
  msbuild = params[:msbuild_path] ? File.join(params[:msbuild_path], "msbuild") : "msbuild"
10
- command = "#{msbuild} #{solution}"
10
+ command = "#{msbuild} \"#{solution}\""
11
11
  params[:targets].each do |target|
12
- command << " /t:#{target}"
12
+ command << " /t:\"#{target}\""
13
13
  end
14
- command << " /p:Configuration=#{configuration}"
15
- command << " /p:Platform=#{platform}" if platform
16
- command << " /p:AndroidSdkDirectory=#{params[:android_home]}" if params[:android_home]
14
+ command << " /p:Configuration=\"#{configuration}\""
15
+ command << " /p:Platform=\"#{platform}\"" if platform
16
+ command << " /p:AndroidSdkDirectory=\"#{params[:android_home]}\"" if params[:android_home]
17
17
  params[:additional_arguments].each do |param|
18
18
  command << " #{param}"
19
19
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Msbuild
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-msbuild
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Ward