From 04f8b4b59cb1f8e12aab3c0d3b8c9dacd9754b41 Mon Sep 17 00:00:00 2001 From: Ben Date: Fri, 14 Jul 2023 20:46:03 +0200 Subject: [PATCH] fix: Update path spec, just like in 16951f523a899e4eba310d21b3a82ccce7882ec5 --- fastlane/Fastfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index bac0e3c..a53dea0 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -17,7 +17,7 @@ platform :mac do # https://docs.fastlane.tools/actions/sh/#sh # https://docs.fastlane.tools/advanced/fastlane/#directory-behavior - sh "sudo ../node_modules/.bin/create-dmg ../build/AutoClicker.app --overwrite ../build", log: true, error_callback: -> (result) { + sh "sudo ../node_modules/.bin/create-dmg ../macos-auto-clicker/build/AutoClicker.app --overwrite ../build", log: true, error_callback: -> (result) { # As the code signing will fail, it will respond with an exit code of 2 instead of a success of 0, # which fastlane will flag as an error. However if the DMG fails to build, it will be an exit code of 1. # It would be great if I could check the exit code and only flag as no error if the exit code is 2, @@ -96,7 +96,7 @@ platform :mac do # https://docs.fastlane.tools/actions/sh/#sh # https://docs.fastlane.tools/advanced/fastlane/#directory-behavior - sh "sudo ../node_modules/.bin/create-dmg ../build/AutoClicker.app --overwrite ../build", log: true, error_callback: -> (result) { + sh "sudo ../node_modules/.bin/create-dmg ../macos-auto-clicker/build/AutoClicker.app --overwrite ../build", log: true, error_callback: -> (result) { # As the code signing will fail, it will respond with an exit code of 2 instead of a success of 0, # which fastlane will flag as an error. However if the DMG fails to build, it will be an exit code of 1. # It would be great if I could check the exit code and only flag as no error if the exit code is 2, @@ -200,7 +200,7 @@ platform :mac do # https://docs.fastlane.tools/actions/sh/#sh # https://docs.fastlane.tools/advanced/fastlane/#directory-behavior - sh "sudo ../node_modules/.bin/create-dmg ../build/AutoClicker.app --overwrite ../build", log: true, error_callback: -> (result) { + sh "sudo ../node_modules/.bin/create-dmg ../macos-auto-clicker/build/AutoClicker.app --overwrite ../build", log: true, error_callback: -> (result) { # As the code signing will fail, it will respond with an exit code of 2 instead of a success of 0, # which fastlane will flag as an error. However if the DMG fails to build, it will be an exit code of 1. # It would be great if I could check the exit code and only flag as no error if the exit code is 2,