Skip to content

Commit 1554435

Browse files
committed
sync up with GuiLite: refactor c_word
1 parent 641d11f commit 1554435

File tree

73 files changed

+3845
-2768
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+3845
-2768
lines changed

.github/.build-all.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ cd ../..
1010
for file in ./Hello*
1111
do
1212
echo -e "\e[44m $file building...\e[49m"
13+
if [ "$file" == "./HelloAzureIoT" ]; then
14+
echo "skip $file"
15+
continue
16+
fi
1317
cd $file
1418
cmake .
1519
make -j4

.github/.updateGuiLite.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ declare -i sum=0
77
for file in ./Hello*
88
do
99
echo -e "\e[44m $file sync up...\e[49m"
10+
if [ "$file" == "./HelloAzureIoT" ]; then
11+
echo "skip $file"
12+
continue
13+
fi
1014
cd $file
1115
cp $src/GuiLite.h UIcode/GuiLite.h
1216
cd ..

0 commit comments

Comments
 (0)