-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mysql-client: Use default-mysql-client instead of default-libmysqlcli…
…ent-dev Rails apps using structure.sql need to use mysqldump when setting up the db and running migrations. That is provided by default-mysql-client.
- Loading branch information
1 parent
e12f6de
commit 86cf2ad
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"id": "mysql-client", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"name": "MySQL Client", | ||
"description": "Installs needed client-side dependencies for Rails apps using MySQL" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
apt-get update -y && apt-get -y install --no-install-recommends default-libmysqlclient-dev | ||
apt-get update -y && apt-get -y install --no-install-recommends default-mysql-client | ||
|
||
rm -rf /var/lib/apt/lists/* |