xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 078e0c2f3f589af6cbe4b01d711367125fcb8cb2

Don't try to run fuzzing tests in mxe-deploy
Author: xaizek
Author date (UTC): 2018-01-20 22:11
Committer name: xaizek
Committer date (UTC): 2018-01-21 15:49
Parent(s): 39b2952fab3ae74c8fc8a051f01a8b7420174d77
Signing key: 99DC5E4DB05F6BE2
Tree: e97b6b732ffcfe0946683b356eb679d7d6cc45c8
File Lines added Lines deleted
scripts/mxe-deploy 6 0
File scripts/mxe-deploy changed (mode: 100755) (index 855288be7..2b075e0c6)
... ... for test in bin/*; do
129 129 basename="\${test#*/}" basename="\${test#*/}"
130 130 name="\${basename%.*}" name="\${basename%.*}"
131 131 mkdir -p "sandbox/\$name" mkdir -p "sandbox/\$name"
132 if [ "\$name" = "fuzz" ]; then
133 continue
134 fi
132 135 if ! \$test -s; then if ! \$test -s; then
133 136 exit 1 exit 1
134 137 fi fi
 
... ... for test in bin/*; do
139 142 basename="\${test#*/}" basename="\${test#*/}"
140 143 name="\${basename%.*}" name="\${basename%.*}"
141 144 mkdir -p "sandbox/\$name" mkdir -p "sandbox/\$name"
145 if [ "\$name" = "fuzz" ]; then
146 continue
147 fi
142 148 if ! \$test -s; then if ! \$test -s; then
143 149 exit 1 exit 1
144 150 fi fi
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master