Skip to content

Commit 0fb6bff

Browse files
committed
Fix typo (sqilte3) signaled by @JuliusPC
1 parent 461d17b commit 0fb6bff

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ ADMINER=https://www.adminer.org/latest.php
4949
PLUGIN=https://raw.github.com/vrana/adminer/master/plugins/plugin.php
5050
MYPLUGIN=https://github.com/FrancoisCapon/LoginToASqlite3DatabaseWithoutCredentialsWithAdminer/raw/master/fc-sqlite-connection-without-credentials.php
5151
# load and concatenate into one file
52-
wget -O adminer-4-sqilte3.php $ADMINER $PLUGIN $MYPLUGIN
52+
wget -O adminer-4-sqlite3.php $ADMINER $PLUGIN $MYPLUGIN
5353

5454
# add myplugin to Adminer
5555
# http://tldp.org/LDP/abs/html/here-docs.html#EX71C
56-
cat << "EOPHP" >> adminer-4-sqilte3.php
56+
cat << "EOPHP" >> adminer-4-sqlite3.php
5757
5858
function adminer_object() {
5959
$plugins = array(new FCSqliteConnectionWithoutCredentials());
@@ -128,11 +128,11 @@ ADMINER=https://www.adminer.org/latest.php
128128
PLUGIN=https://raw.github.com/vrana/adminer/master/plugins/plugin.php
129129
MYPLUGIN=https://github.com/FrancoisCapon/LoginToASqlite3DatabaseWithoutCredentialsWithAdminer/raw/master/fc-sqlite-connection-without-credentials.php
130130
# load and concatenate into one file
131-
wget -O adminer-4-sqilte3.php $ADMINER $PLUGIN $MYPLUGIN
131+
wget -O adminer-4-sqlite3.php $ADMINER $PLUGIN $MYPLUGIN
132132

133133
# add myplugin to Adminer
134134
# http://tldp.org/LDP/abs/html/here-docs.html#EX71C
135-
cat << "EOPHP" >> adminer-4-sqilte3.php
135+
cat << "EOPHP" >> adminer-4-sqlite3.php
136136
137137
function adminer_object() {
138138
$plugins = array(new FCSqliteConnectionWithoutCredentials());

build-adminer-4-sqlite3-into-one-file.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ ADMINER=https://www.adminer.org/latest.php
66
PLUGIN=https://raw.github.com/vrana/adminer/master/plugins/plugin.php
77
MYPLUGIN=https://github.com/FrancoisCapon/LoginToASqlite3DatabaseWithoutCredentialsWithAdminer/raw/master/fc-sqlite-connection-without-credentials.php
88
# load and concatenate into one file
9-
wget -O adminer-4-sqilte3.php $ADMINER $PLUGIN $MYPLUGIN
9+
wget -O adminer-4-sqlite3.php $ADMINER $PLUGIN $MYPLUGIN
1010

1111
# add myplugin to Adminer
1212
# http://tldp.org/LDP/abs/html/here-docs.html#EX71C
13-
cat << "EOPHP" >> adminer-4-sqilte3.php
13+
cat << "EOPHP" >> adminer-4-sqlite3.php
1414
1515
function adminer_object() {
1616
$plugins = array(new FCSqliteConnectionWithoutCredentials());
@@ -19,4 +19,4 @@ function adminer_object() {
1919
EOPHP
2020
# remove all the <?php except the first
2121
# http://www.theunixschool.com/2011/02/sed-replace-or-substitute-file-contents.html
22-
sed -i '2,$s/<?php$//' adminer-4-sqilte3.php
22+
sed -i '2,$s/<?php$//' adminer-4-sqlite3.php

0 commit comments

Comments
 (0)