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
{{ message }}
This repository was archived by the owner on Jan 21, 2026. It is now read-only.
# if provided, FILTER is used as the --filter argument to `swift test`.
ifdef FILTER
FILTERARG = --filter $(FILTER)
else
FILTERARG =
endif
# if no value provided assume sourcery is in the user's PATH
SOURCERY ?= sourcery
define check_for_gem
gem list $(1) -i > /dev/null || gem install $(1) || { echo "ERROR: Failed to locate or install the ruby gem $(1); please install yourself with 'gem install $(1)' (you may need to use sudo)"; exit 1; }