Files
dl/third/ktx/scripts/smudge_date.ps1
T
2026-09-16 14:07:40 +08:00

25 lines
509 B
PowerShell
Vendored

# Copyright 2023 The Khronos Group Inc.
# SPDX-License-Identifier: Apache-2.0
# Smudge all files with proper $Date$ values.
# Make sure we're in the repo root
$path=(split-path $MyInvocation.MyCommand.Path -Parent)
echo $path
cd $path/..
$target_files = @(
'pkgdoc/pages.md'
'lib/libktx_mainpage.md'
'tools/ktxtools_mainpage.md'
'interface/js_binding/ktx_wrapper.cpp'
)
#foreach ($file in $target_files) {
# rm $file
# git checkout $file
#}
rm $target_files
git checkout $target_files