From 051bdfa68a0275a3e0847173d8ade0d2f381cb60 Mon Sep 17 00:00:00 2001 From: eZio Pan Date: Wed, 24 Apr 2024 20:56:57 +0800 Subject: [PATCH] update powershell script --- d.ps1 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/d.ps1 b/d.ps1 index 6772f52..af2d8a1 100644 --- a/d.ps1 +++ b/d.ps1 @@ -6,13 +6,15 @@ param ( [string]$peri ) +$REV="74b97817d4c4ed0db9d19a8eac46720b3c5b0d57" + Switch ($CMD) { "download-all" { rm -r -Force ./sources/ -ErrorAction SilentlyContinue git clone https://github.com/embassy-rs/stm32-data-sources.git ./sources/ cd ./sources/ - git checkout a2062c088cf299bd3dc5128eeaa96e07fff2087c + git checkout $REV cd .. } "install-chiptool" { @@ -41,4 +43,4 @@ Switch ($CMD) default { echo "unknown command" } -} \ No newline at end of file +}