Skip to content
This repository was archived by the owner on Mar 26, 2023. It is now read-only.

Add heroku-18 to list of stacks that need to have lib atomic copied. #43

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/steps/libatomic-install
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Heroku 16 stack is missing `libatomic` from runtime lets copy over

if [ "$STACK" = "heroku-16" ]; then
if [ "$STACK" = "heroku-16" -o "$STACK" = "heroku-18" ]; then
cp "/usr/lib/x86_64-linux-gnu/libatomic.so.1" "$BUILD_DIR/.swift-lib"
fi