-
Notifications
You must be signed in to change notification settings - Fork 27
Remove Darwin specific logic - Closes #317 #318
Conversation
build.sh
Outdated
@@ -59,10 +59,7 @@ cd src || exit 2 | |||
|
|||
echo "Building libreadline7" | |||
echo "--------------------------------------------------------------------------" | |||
if [ ! -f "$LIBREADLINE_FILE" ] && [ ! "$(uname -s)" == "Darwin" ]; then | |||
exec_cmd "wget $LIBREADLINE_URL -O $LIBREADLINE_FILE" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
still need this guy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the wget I mean :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing a wget
e393460
to
19eef3b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoops, I almost missed this.
postgres, we need to force it to link against the packaged libreadline7
(the evil ! "$(uname -s) == "Darwin" lines )
19eef3b
to
fb077c3
Compare
build.sh
Outdated
@@ -151,10 +144,6 @@ if [ ! -d "$BUILD_NAME/node_modules" ]; then | |||
# Copy jq to binary folder | |||
exec_cmd "cp -vf $JQ_DIR/$JQ_OUT $BUILD_NAME/bin/$JQ_OUT" | |||
|
|||
if [ ! "$(uname -s)" == "Darwin" ]; then | |||
exec_cmd "cp -vf $LIBREADLINE_DIR/out/lib/* $BUILD_NAME/lib" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one too. This is all of them
fb077c3
to
d303b37
Compare
No description provided.