1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 07:36:44 +02:00

Updated Compile Adminer with Plugin(s) and Design (markdown)

François Capon
2020-11-11 14:40:45 +01:00
parent 44130167a6
commit c4e80344db

@@ -15,7 +15,7 @@ The [`compile.sh`](https://github.com/FrancoisCapon/LoginToASqlite3DatabaseWitho
```bash ```bash
echo -e "\n$step. Load plugin's sources:\n" echo -e "\n$step. Load plugin's sources:\n"
((step+=1)) ((step+=1))
wget -P adminer/plugins/ https://raw.githubusercontent.com/.../master/fc-sqlite-connection-without-credentials.php wget -P adminer/plugins/ https://raw.githubusercontent.com/.../master/plugin.php
echo -e "\n$step. Adding the plugin to the sources\n" echo -e "\n$step. Adding the plugin to the sources\n"
((step+=1)) ((step+=1))
cat << "EOPHP" >> adminer/adminer/include/bootstrap.inc.php cat << "EOPHP" >> adminer/adminer/include/bootstrap.inc.php
@@ -34,9 +34,8 @@ The script can also embedded design:
design=$2 design=$2
echo -e "\n$step. Set the design: $design\n" echo -e "\n$step. Set the design: $design\n"
((step+=1)) ((step+=1))
cp $CSS_FILE $CSS_FILE.backup cp $CSS_FILE $CSS_FILE.backup
cat $CSS_FILE.backup $DESIGNS_DIR/$design/adminer.css > $CSS_FILE cat $CSS_FILE.backup $DESIGNS_DIR/$design/adminer.css > $CSS_FILE
fi
``` ```