orchest / orchest

Build data pipelines, the easy way 🛠️

Home Page:https://orchest.readthedocs.io/en/stable/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inconsistent behavior of some setup commands depending on whitespace

astrojuanlu opened this issue · comments

This setup script fails as expected, since the lack of -y flag means the installation gets aborted:

#!/bin/bash

set -e

sudo apt-get install libpq-dev

However, surprisingly this one succeeds:

#!/bin/bash

set -e

sudo apt-get install libpq-dev


# wat

Tested with the latest version of Orchest.