mirror of
https://github.com/uutils/coreutils
synced 2024-11-10 07:04:16 +00:00
refactor ~ (utils) fix spelling + add spell-checker exceptions
This commit is contained in:
parent
23ed32afe9
commit
06c53d97fc
4 changed files with 6 additions and 5 deletions
|
@ -1,4 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# spell-checker:ignore (paths) abmon deref discrim getlimits getopt ginstall gnulib inacc infloop inotify reflink ; (misc) INT_OFLOW OFLOW ; (vars/env) BUILDDIR SRCDIR
|
||||
|
||||
set -e
|
||||
if test ! -d ../gnu; then
|
||||
echo "Could not find ../gnu"
|
||||
|
@ -96,4 +99,3 @@ sed -i 's|seq \$|/usr/bin/timeout 0.1 seq \$|' tests/misc/seq-precision.sh tests
|
|||
sed -i 's|cat |/usr/bin/timeout 0.1 cat |' tests/misc/cat-self.sh
|
||||
|
||||
test -f "${BUILDDIR}/getlimits" || cp src/getlimits "${BUILDDIR}"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
//! Rules to update the codebase using Rerast
|
||||
//! Rules to update the codebase using `rerast`
|
||||
|
||||
/// Converts try!() to ?
|
||||
fn try_to_question_mark<T, E, X: From<E>>(r: Result<T, E>) -> Result<T, X> {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/bin/bash
|
||||
# spell-checker:ignore (env/vars) BUILDDIR GNULIB SUBDIRS
|
||||
set -e
|
||||
BUILDDIR="${PWD}/uutils/target/release"
|
||||
GNULIB_DIR="${PWD}/gnulib"
|
||||
|
|
|
@ -14,7 +14,7 @@ PROGS=$(ls -1d src/uu/*/Cargo.toml src/uu/stdbuf/src/libstdbuf/Cargo.toml Cargo.
|
|||
# update the version of all programs
|
||||
sed -i -e "s|version = \"$FROM\"|version = \"$TO\"|" $PROGS
|
||||
|
||||
# Update the stbuff stuff
|
||||
# Update the stdbuf stuff
|
||||
sed -i -e "s|libstdbuf = { version=\"$FROM\"|libstdbuf = { version=\"$TO\"|" src/uu/stdbuf/Cargo.toml
|
||||
sed -i -e "s|= { optional=true, version=\"$FROM\", package=\"uu_|= { optional=true, version=\"$TO\", package=\"uu_|g" Cargo.toml
|
||||
|
||||
|
@ -22,5 +22,3 @@ sed -i -e "s|= { optional=true, version=\"$FROM\", package=\"uu_|= { optional=tr
|
|||
#sed -i -e "s|version = \"$UUCORE_FROM\"|version = \"$UUCORE_TO\"|" src/uucore/Cargo.toml
|
||||
# Update crates using uucore
|
||||
#sed -i -e "s|uucore = { version=\">=$UUCORE_FROM\",|uucore = { version=\">=$UUCORE_TO\",|" $PROGS
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue