mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 16:57:41 -04:00
7 lines
130 B
Bash
Executable file
7 lines
130 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Setting up test environment..."
|
|
git -C FreeRTOS submodule update --init --recursive
|
|
RC=$?
|
|
echo "Done"
|
|
exit $RC
|