summaryrefslogtreecommitdiff
path: root/Meta/refresh-serenity-qtcreator.sh
AgeCommit message (Collapse)Author
2020-06-21Meta: Tweak QtCreator .files sync script to include .idl filesAndreas Kling
2020-02-10Meta: Fix shellcheck warnings in various scriptsShannon Booth
Warnings fixed: * SC2086: Double quote to prevent globbing and word splitting. * SC2006: Use $(...) notation instead of legacy backticked `...` * SC2039: In POSIX sh, echo flags are undefined * SC2209: Use var=$(command) to assign output (or quote to assign string) * SC2164: Use 'cd ... || exit' or 'cd ... || return' in case cd fails * SC2166: Prefer [ p ] && [ q ] as [ p -a q ] is not well defined. * SC2034: i appears unused. Verify use (or export if used externally) * SC2046: Quote this to prevent word splitting. * SC2236: Use -z instead of ! -n. There are still a lot of warnings in Kernel/run about: - SC2086: Double quote to prevent globbing and word splitting. However, splitting on space is intentional in this case, and not trivial to change. Therefore ignore the warning for now - but we should fix this in the future.
2020-01-25Meta: Fix typo + suggest value of export variable.Emanuel Sprung
The variable is not set anymore by the UseIt.sh script, so if a user doesn't have it set in the .bashrc or .zshrc file already, it's not working properly.
2019-12-24Meta: refresh-serenity-qtcreator.sh now checks if SERENITY_ROOT is setanon
2019-11-23Meta: The Qt Creator .files refresh script should pick up .c filesAndreas Kling
2019-11-03POSIX compliance: (most) shell scripts converted to generic shellGeorge Pickering
Ports/.port_include.sh, Toolchain/BuildIt.sh, Toolchain/UseIt.sh have been left largely untouched due to use of Bash-exclusive functions and variables such as $BASH_SOURCE, pushd and popd.
2019-09-28Meta: Tweak the Qt Creator project updater a bitAndreas Kling
2019-08-16Meta: Add the script I use to refresh my Qt Creator project filesAndreas Kling