Skip to content

Commit

Permalink
RIOT: Fix file name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdeep1 committed Jul 1, 2024
1 parent 15576ed commit e5b7b98
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions examples/riot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ pkg:
COMMIT_FILE=pkg_libcoap/patches/9999-Not-Yet-Commited.patch ; \
WC=`git diff HEAD -p --stat | wc -l` ; \
if [ "$${WC}" != 0 ] ; then \
echo "From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001" > $${COMMIT_FILE}} ; \
echo "From: Internal <[email protected]>" >> $${COMMIT_FILE}} ; \
echo "Date: `date`" >> $${COMMIT_FILE}} ; \
echo "Subject: [PATCH 1/1] RIOT: To commit" >> $${COMMIT_FILE}} ; \
echo "" >> $${COMMIT_FILE}} ; \
echo "---" >> $${COMMIT_FILE}} ; \
git diff HEAD -p --stat >> $${COMMIT_FILE}} ; \
echo "From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001" > $${COMMIT_FILE} ; \
echo "From: Internal <[email protected]>" >> $${COMMIT_FILE} ; \
echo "Date: `date`" >> $${COMMIT_FILE} ; \
echo "Subject: [PATCH 1/1] RIOT: To commit" >> $${COMMIT_FILE} ; \
echo "" >> $${COMMIT_FILE} ; \
echo "---" >> $${COMMIT_FILE} ; \
git diff HEAD -p --stat >> $${COMMIT_FILE} ; \
echo "9999-Not-Yet-Commited.patch" ; \
fi ; \
fi
Expand Down

0 comments on commit e5b7b98

Please sign in to comment.