mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-09-02 19:23:49 +00:00
* Parallel sql format
* change image
* -q
* unformatted
* Revert "unformatted"
This reverts commit 22e79fe4c5
.
* -q
10 lines
294 B
Bash
Executable file
10 lines
294 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
version=5.6
|
|
wget https://github.com/darold/pgFormatter/archive/refs/tags/v${version}.tar.gz -q
|
|
tar xzf v${version}.tar.gz
|
|
cd pgFormatter-${version}/
|
|
perl Makefile.PL
|
|
make && make install
|
|
cd ../ && rm -rf v${version}.tar.gz && rm -rf pgFormatter-${version} #clean up
|