在.github/workflows/kernel.yml 大约150行的位置有: ```` mkdir -p $toolchain_name ```` 这在bash中是不合法的.应该为 ```` mkdir -p '$toolchain_name' ````