Skip to content

Commit

Permalink
replace all obsolete occurrences of http-link "github.com/kripken/sql…
Browse files Browse the repository at this point in the history
….js" with "github.com/sql-js/sql.js" by running shell-command: (sql-js#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"
  • Loading branch information
kaizhu256 authored Sep 4, 2020
1 parent 20157a1 commit 592d529
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ CFLAGS = \

# When compiling to WASM, enabling memory-growth is not expected to make much of an impact, so we enable it for all builds
# Since tihs is a library and not a standalone executable, we don't want to catch unhandled Node process exceptions
# 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
# 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
EMFLAGS = \
--memory-init-file 0 \
-s RESERVED_FUNCTION_POINTERS=64 \
Expand Down
4 changes: 2 additions & 2 deletions examples/GUI/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

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

<footer>
Original work by kripken (<a href='https://github.com/kripken/sql.js'>sql.js</a>).
Original work by kripken (<a href='https://github.com/sql-js/sql.js'>sql.js</a>).
C to Javascript compiler by kripken (<a href='https://github.com/kripken/emscripten'>emscripten</a>).
Project now maintained by <a href='https://github.com/lovasoa'>lovasoa</a>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion test/disabled_test_memory_leak_on_error.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// See: https://github.com/kripken/sql.js/issues/306
// See: https://github.com/sql-js/sql.js/issues/306
exports.test = function(sql, assert) {
var errors = 0, runs=10000;
for (var i=0; i<runs; i++) {
Expand Down

0 comments on commit 592d529

Please sign in to comment.