xcode-simulator-cert/generate-version-swift.sh

16 lines
315 B
Bash
Executable File

#!/bin/bash
version="0.1.0"
cat > ./Sources/XcodeSimulatorKit/Version.swift <<EOF
//
// NOTE: This file is automatically generated by generate-version-swift.sh.
// Should not be under version control.
//
public extension XcodeSimulatorTool {
static var version: String {
return "${version}"
}
}