diff --git a/synctestdata.ps1 b/synctestdata.ps1 index 0188954..eda8bf5 100644 --- a/synctestdata.ps1 +++ b/synctestdata.ps1 @@ -16,7 +16,7 @@ If (-Not (Test-Path "${TestInputDirectory}\${TestSet}")) } ForEach ($TestFile in ${TestFiles} -split " ") { - $Url = "https://github.com/log2timeline/dfwinreg/blob/main/test_data/${TestFile}?raw=true" + $Url = "https://github.com/log2timeline/dfwinreg/blob/main/test_data/winprefetch/${TestFile}?raw=true" Invoke-WebRequest -Uri ${Url} -OutFile "${TestInputDirectory}\${TestSet}\${TestFile}" } diff --git a/synctestdata.sh b/synctestdata.sh index 336dbed..45957ac 100755 --- a/synctestdata.sh +++ b/synctestdata.sh @@ -11,7 +11,7 @@ mkdir -p "${TEST_INPUT_DIRECTORY}/${TEST_SET}"; for TEST_FILE in ${TEST_FILES}; do - URL="https://github.com/log2timeline/plaso/blob/main/test_data/${TEST_FILE}?raw=true"; + URL="https://github.com/log2timeline/plaso/blob/main/test_data/winprefetch/${TEST_FILE}?raw=true"; curl -L -o "${TEST_INPUT_DIRECTORY}/${TEST_SET}/${TEST_FILE}" ${URL}; done