- 16 8月, 2016 7 次提交
-
-
deps: move go-is-domain to gx
由 Jeromy Johnson 提交于 -
License: MIT Signed-off-by:Jeromy <why@ipfs.io>
由 Jeromy 提交于 -
Add period to `ipfs pin rm`
由 Jeromy Johnson 提交于 -
Update dns help with a correct domain name
由 Jeromy Johnson 提交于 -
test: 100% coverage for blocks/blocksutil
由 Jeromy Johnson 提交于 -
ipfs-test-lib: fix test_fsh arg quoting
由 Jeromy Johnson 提交于 -
This was easy. License: MIT Signed-off-by:Jakub Sztandera <kubuxu@protonmail.ch>
由 Jakub Sztandera 提交于
-
- 15 8月, 2016 3 次提交
-
-
Small doc fix. License: MIT Signed-off-by:Richard Littauer <richard.littauer@gmail.com>
由 Richard Littauer 提交于 -
Closes https://github.com/ipfs/faq/issues/161 License: MIT Signed-off-by:
Kevin Simper <kevin.simper@gmail.com>
由 Kevin Simper 提交于 -
test_fsh() should quote its arguments before passing them to `eval` otherwise there are problems when the arguments contain spaces. For example when running the following program: ``` #!/bin/sh . ./ipfs-test-lib.sh die () { printf >&2 "%s\n" "$@" exit 1 } DIR1="test dir 1" DIR2="test dir 2" mkdir "$DIR1" "$DIR2" || die "Could not mkdir '$DIR1' '$DIR2'" echo "in dir 1" >"$DIR1/file1" || die "Could not write into '$DIR1/file1'" echo "in dir 2" >"$DIR2/file2" || die "Could not write into '$DIR2/file2'" if test_cmp "$DIR1/file1" "$DIR2/file2" then echo "test_cmp succeeded!" else echo "test_cmp failed!" fi rm -rf "$DIR1" "$DIR2" || die "Could not rm -rf '$DIR1' '$DIR2'" ``` we get: ``` > diff -u test dir 1/file1 test dir 2/file2 diff: extra operand '1/file1' diff: Try 'diff --help' for more information. test_cmp failed! ``` License: MIT Signed-off-by:Christian Couder <chriscool@tuxfamily.org>
由 Christian Couder 提交于
-
- 12 8月, 2016 1 次提交
-
-
License: MIT Signed-off-by:Jakub Sztandera <kubuxu@protonmail.ch>
由 Jakub Sztandera 提交于
-
- 10 8月, 2016 1 次提交
-
-
License: MIT Signed-off-by:Jeromy <why@ipfs.io>
由 Jeromy 提交于
-
- 09 8月, 2016 1 次提交
-
-
License: MIT Signed-off-by:Jeromy <why@ipfs.io>
由 Jeromy 提交于
-
- 07 8月, 2016 3 次提交
-
-
commands: fix panic when stdin is empty for string args
由 Jeromy Johnson 提交于 -
boot2docker-cli is deprecated, removed from README
由 Jeromy Johnson 提交于 -
License: MIT Signed-off-by:Jeromy <why@ipfs.io>
由 Jeromy 提交于
-
- 06 8月, 2016 1 次提交
-
-
- Docker for Mac/Windows is out of beta - docker-machine is recommended for unsupported machines License: MIT Signed-off-by:Zach Ramsay <zach@erisindustries.com>
由 zramsay 提交于
-
- 04 8月, 2016 9 次提交
-
-
Alias 'ipfs --version' to 'ipfs version'
由 Jeromy Johnson 提交于 -
License: MIT Signed-off-by:Jeromy <why@ipfs.io>
由 Jeromy 提交于 -
License: MIT Signed-off-by:Jeromy <why@ipfs.io>
由 Jeromy 提交于 -
License: MIT Signed-off-by:Jeromy <why@ipfs.io>
由 Jeromy 提交于 -
License: MIT Signed-off-by:Jakub Sztandera <kubuxu@protonmail.ch>
由 Jakub Sztandera 提交于 -
bitswap: fix a minor data race
由 Jeromy Johnson 提交于 -
dht: add in code to detect and diagnose #3032
由 Jeromy Johnson 提交于 -
race detector picked up a minor race condition, Since loop iteration reuses the same local variable, its not safe to take its address and use it concurrently. The fix is to rebind the variable into a controlled scope (creating a new variable) and taking the address of that to pass outwards. License: MIT Signed-off-by:Jeromy <why@ipfs.io>
由 Jeromy 提交于 -
License: MIT Signed-off-by:Jeromy <why@ipfs.io>
由 Jeromy 提交于
-
- 03 8月, 2016 12 次提交
-
-
-enc is spelled with two dashes, not one
由 Jeromy Johnson 提交于 -
commands/cli: fix reading from stdin message
由 Jeromy Johnson 提交于 -
Feature/daemon mount offline flag
由 Jeromy Johnson 提交于 -
Only print "Reading from /dev/stdin" message when we actually read from stdin (and not in other cases such as ipfs add --help). License: MIT Signed-off-by:Jeromy <why@ipfs.io>
由 Jeromy 提交于 -
License: MIT Signed-off-by:Jakub Sztandera <kubuxu@protonmail.ch>
由 Jakub Sztandera 提交于 -
cli: do ToSlash after EvalSymlinks to remove platform specific slashes
由 Jeromy Johnson 提交于 -
Sort SUBCOMMANDS section of help output
由 Jeromy Johnson 提交于 -
License: MIT Signed-off-by:Jakub Sztandera <kubuxu@protonmail.ch>
由 Jakub Sztandera 提交于 -
ipfs daemon --offline; ipfs mount; fails. This uniforms this behaviour. License: MIT Signed-off-by:Jakub Sztandera <kubuxu@protonmail.ch>
由 Jakub Sztandera 提交于 -
blockstore: extract ARC cache from Bloom cache
由 Jeromy Johnson 提交于 -
License: MIT Signed-off-by:Jakub Sztandera <kubuxu@protonmail.ch>
由 Jakub Sztandera 提交于 -
don't cache entire mfs tree on add finalize
由 Jeromy Johnson 提交于
-
- 02 8月, 2016 2 次提交
-
-
License: MIT Signed-off-by:Jakub Sztandera <kubuxu@protonmail.ch>
由 Jakub Sztandera 提交于 -
it removes race condition that would happen during various calls License: MIT Signed-off-by:Jakub Sztandera <kubuxu@protonmail.ch>
由 Jakub Sztandera 提交于
-