Skip to content

Commit 592d529

Browse files
authored
replace all obsolete occurrences of http-link "github.com/kripken/sql.js" with "github.com/sql-js/sql.js" by running shell-command: (#417)
$ git grep "github.com/kripken/sql.js" | sed -e "s/:.*//" | sort -u | xargs sed -i "s|github.com/kripken/sql.js|github.com/sql-js/sql.js|g"
1 parent 20157a1 commit 592d529

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ CFLAGS = \
2727

2828
# When compiling to WASM, enabling memory-growth is not expected to make much of an impact, so we enable it for all builds
2929
# Since tihs is a library and not a standalone executable, we don't want to catch unhandled Node process exceptions
30-
# So, we do : `NODEJS_CATCH_EXIT=0`, which fixes issue: https://github.com/kripken/sql.js/issues/173 and https://github.com/kripken/sql.js/issues/262
30+
# So, we do : `NODEJS_CATCH_EXIT=0`, which fixes issue: https://github.com/sql-js/sql.js/issues/173 and https://github.com/sql-js/sql.js/issues/262
3131
EMFLAGS = \
3232
--memory-init-file 0 \
3333
-s RESERVED_FUNCTION_POINTERS=64 \

examples/GUI/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<body>
1414
<!-- Github ribbon -->
15-
<a href="https://github.com/kripken/sql.js"><img style="position: absolute; top: 0; left: 0; border: 0;"
15+
<a href="https://github.com/sql-js/sql.js"><img style="position: absolute; top: 0; left: 0; border: 0;"
1616
src="https://camo.githubusercontent.com/82b228a3648bf44fc1163ef44c62fcc60081495e/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f7265645f6161303030302e706e67"
1717
alt="Fork me on GitHub"
1818
data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_left_red_aa0000.png"></a>
@@ -59,7 +59,7 @@ <h1>Online SQL interpreter</h1>
5959
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.46.0/mode/sql/sql.min.js"></script>
6060

6161
<footer>
62-
Original work by kripken (<a href='https://github.com/kripken/sql.js'>sql.js</a>).
62+
Original work by kripken (<a href='https://github.com/sql-js/sql.js'>sql.js</a>).
6363
C to Javascript compiler by kripken (<a href='https://github.com/kripken/emscripten'>emscripten</a>).
6464
Project now maintained by <a href='https://github.com/lovasoa'>lovasoa</a>
6565
</footer>

test/disabled_test_memory_leak_on_error.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// See: https://github.com/kripken/sql.js/issues/306
1+
// See: https://github.com/sql-js/sql.js/issues/306
22
exports.test = function(sql, assert) {
33
var errors = 0, runs=10000;
44
for (var i=0; i<runs; i++) {

0 commit comments

Comments
 (0)