Canviat el final de linea als scripts de linux
This commit is contained in:
@@ -5,6 +5,6 @@ SOURCEPATH=../source/
|
||||
for i in "$SOURCEPATH"/*.cpp
|
||||
do
|
||||
include-what-you-use -D DEBUG -D VERBOSE -std=c++20 -Wall "$i"
|
||||
read -p "Presiona cualquier tecla para continuar..."
|
||||
read -r -p "Presiona cualquier tecla para continuar..."
|
||||
clear
|
||||
done
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
# warning,style,performance
|
||||
#cppcheck --force --enable=warning,style,performance --std=c++20 \
|
||||
--suppressions-list=/home/sergio/gitea/coffee_crisis_arcade_edition/linux-utils/cppcheck_suppressions \
|
||||
/home/sergio/gitea/coffee_crisis_arcade_edition/source/ \
|
||||
2>/home/sergio/cppcheck-result-warning-style-performance
|
||||
# --suppressions-list=/home/sergio/gitea/coffee_crisis_arcade_edition/linux-utils/cppcheck_suppressions \
|
||||
# /home/sergio/gitea/coffee_crisis_arcade_edition/source/ \
|
||||
# 2>/home/sergio/cppcheck-result-warning-style-performance
|
||||
|
||||
# all
|
||||
cppcheck --force --enable=all -I /usr/include --std=c++20 \
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
valgrind --suppressions=valgrind_exceptions --leak-check=full ~/coffee_crisis_arcade_edition/coffee_crisis_arcade_edition_debug > ~/coffee_crisis_arcade_edition/debug.txt 2>&1
|
||||
valgrind --suppressions=valgrind_exceptions \
|
||||
--leak-check=full \
|
||||
~/coffee_crisis_arcade_edition/coffee_crisis_arcade_edition_debug \
|
||||
> ~/coffee_crisis_arcade_edition/debug.txt 2>&1
|
||||
Reference in New Issue
Block a user