fastlane-plugin-unity_exporter 1.3.2 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: afb410cbd88818bbc233fce59e860ea4b1c9843f82ae366f75976cc19992543d
4
- data.tar.gz: 7bfc6834d17e4f2b1a689eb674e7fa0deca0d63d336b18e9f73c6869f35eff50
3
+ metadata.gz: cad649f6ebbc0102d8e2d8295a76350b09b4fbd9873d2581ac65971b6a156ac5
4
+ data.tar.gz: e043af9dd9db9a8372866e822487bb47d82363937bd9d6d9d263798ca50c090e
5
5
  SHA512:
6
- metadata.gz: c291c26afd9a16d71c6e286178077b8136e0651ba158cd503debd75009cd42fdef94107ec210caaca4fc9eff63cdeeb4148bd7fddc00d330e6ce9577cc62feb8
7
- data.tar.gz: 1a9488d77b3797ab7d3ea2131a965c4d934be4db2e6a5d773f856334796af17dc0a966b5a10712ea29f60d31b59f321bb8904b3b1b08cc81cf5675dea948df4c
6
+ metadata.gz: de4f1d457398aa20fd87cb4dabe052cad7819a5c12e54d968f3b7b79c18235f93d2f1bbf5e2e211282867c2fbe38106770bd387d8ac70f2a26c38601e3490880
7
+ data.tar.gz: 2f510f3242214de7440bea574cfc367a6bfbeaec6fd3ebebf0db5c43eee185526517f0e473a67204ece53015e84ef9219f562ac5bf8c00917db1f105fd3c9ba7
@@ -26,7 +26,7 @@ module Fastlane
26
26
  headless_args << " -batchmode -nographics -quit" # some arguments that are required when running Unity in headless-mode
27
27
  headless_args << " -accept-apiupdate -releaseCodeOptimization"
28
28
  headless_args << " -projectPath #{Helper::UnityEditorHelper.unity_project_path}"
29
- headless_args << " -logFile unity-export-logs/#{DateTime.now.strftime('%Y-%m-%d_%H-%M-%S-%L')}_#{params[:build_target]}_build.log" # logging; not specifying a path will print the log to the console
29
+ headless_args << " -logFile #{Helper::UnityEditorHelper.unity_project_path}/BuildExporter/#{DateTime.now.strftime('%Y-%m-%d_%H-%M-%S-%L')}_#{params[:build_target]}_build.log" # logging; not specifying a path will print the log to the console
30
30
 
31
31
  # following are custom arguments defined in 'UnityExporter.BuildUtility'
32
32
  # this script is part of the 'fastlane-plugin-unity-exporter-package'
@@ -9,12 +9,12 @@ module Fastlane
9
9
  module Helper
10
10
  class UnityEditorHelper
11
11
  # project path relative if following hierarchy is given: "root/{unity-project}/fastlane-build-exporter/{platform}-export/."
12
- # p File.expand_path("../../")
13
- @project_path_default = "../../"
12
+ # p File.expand_path("../..")
13
+ @project_path_default = "../.."
14
14
  @project_path = ""
15
15
 
16
16
  def self.unity_project_path
17
- project_path = @project_path == "" ? "../../" : @project_path
17
+ project_path = @project_path == "" ? @project_path_default : @project_path
18
18
 
19
19
  # we verify the path to the Unity project by looking for the 'manifest.json' file
20
20
  package_manifest_path = "#{project_path}/Packages/manifest.json"
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module UnityExporter
3
- VERSION = "1.3.2"
3
+ VERSION = "1.4.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-unity_exporter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ar:met