We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a45d30e commit 5be9d25Copy full SHA for 5be9d25
2 files changed
.github/workflows/containerization-build-template.yml
@@ -52,6 +52,7 @@ jobs:
52
53
- name: Make containerization and docs
54
run: |
55
+ source /opt/swiftly/env.sh
56
make clean containerization docs
57
tar cfz _site.tgz _site
58
env:
vminitd/Makefile
@@ -23,8 +23,8 @@ SWIFT_SDK_PATH := /tmp/$(notdir $(SWIFT_SDK_URL))
23
24
SWIFTLY_URL := https://download.swift.org/swiftly/darwin/swiftly.pkg
25
SWIFTLY_FILENAME := $(notdir $(SWIFTLY_URL))
26
-SWIFTLY_BIN_DIR ?= ~/.swiftly/bin
27
-SWIFT ?= $(SWIFTLY_BIN_DIR)/swift
+SWIFTLY_BIN_DIR ?= $(HOME)/.swiftly/bin
+SWIFT := $(SWIFTLY_BIN_DIR)/swift
28
BUILD_BIN_DIR := $(shell $(SWIFT) build -c $(BUILD_CONFIGURATION) $(SWIFT_CONFIGURATION) --show-bin-path)
29
30
SYSTEM_TYPE := $(shell uname -s)
0 commit comments