You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
` # Store the new number in the shared hash
version_code = params[:version_code].to_s.strip
version_code = Actions.sh("#{command_prefix} agvtool what-version", log: false).split("\n").last.strip if version_code.to_s == ""
Would be very helpful for fastfile integration if this were made into a shared value to use in other actions:
module SharedValues VERSION_CODE ||= :VERSION_CODE
then something like
` # Store the new number in the shared hash
version_code = params[:version_code].to_s.strip
version_code = Actions.sh("#{command_prefix} agvtool what-version", log: false).split("\n").last.strip if version_code.to_s == ""
The text was updated successfully, but these errors were encountered: