Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setShellPath (0.2 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXShellScriptBuildPhase.java

         */
        @Nullable
        public String getShellPath() {
            return shellPath;
        }
    
        /**
         * Sets the path to the shell under which the script is to be executed.
         */
        public void setShellPath(String shellPath) {
            this.shellPath = shellPath;
        }
    
        /**
         * Gets the contents of the shell script to execute under the shell
         * returned by {@link #getShellPath()}.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

        }
    
        private PBXTarget toXCTestPbxTarget(XcodeTarget xcodeTarget) {
            PBXShellScriptBuildPhase hackBuildPhase = new PBXShellScriptBuildPhase();
            hackBuildPhase.setShellPath("/bin/sh");
            hackBuildPhase.setShellScript("# Script to generate specific Swift files Xcode expects when running tests.\n"
                + "set -eu\n"
                + "ARCH_ARRAY=($ARCHS)\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top