Skip to content

Commit d349181

Browse files
committed
Applied updates
1 parent 6d99768 commit d349181

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build_wheel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- name: Install build dependencies
2424
run: |
25-
sudo add-apt-repository universe &&
26-
sudo add-apt-repository -y ppa:deadsnakes/ppa &&
27-
sudo apt-get update &&
25+
sudo add-apt-repository universe
26+
sudo add-apt-repository -y ppa:deadsnakes/ppa
27+
sudo apt-get update
2828
sudo apt-get install -y autoconf automake autopoint build-essential git libtool pkg-config python${{ matrix.python-version }} python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-venv python3-pip python3-setuptools
2929
- name: Install tox
3030
run: |

build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Script that builds libpff
22
#
3-
# Version: 20230411
3+
# Version: 20251125
44

55
Param (
66
[string]$Configuration = ${Env:Configuration},
@@ -20,7 +20,7 @@ $Python = "${PythonPath}\python.exe"
2020
$Git = "git"
2121
$GitUrl = "https://github.com/libyal/vstools.git"
2222

23-
$MSVSCppConvert = "${VSToolsPath}\scripts\msvscpp-convert.py"
23+
$MSVSCppConvert = "${VSToolsPath}\vstools\scripts\msvscpp_convert.py"
2424

2525
If (-Not (Test-Path $Python))
2626
{
@@ -50,7 +50,7 @@ Else
5050
}
5151
If (-Not (Test-Path ${MSVSCppConvert}))
5252
{
53-
Write-Host "Missing msvscpp-convert.py: ${MSVSCppConvert}" -foreground Red
53+
Write-Host "Missing msvscpp_convert.py: ${MSVSCppConvert}" -foreground Red
5454

5555
Exit ${ExitFailure}
5656
}

manuals/pffexport.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ shows this help
4040
.It Fl l Ar logfile
4141
specify the file in which to log information about the exported items
4242
.It Fl m Ar mode
43-
export mode, option: all, debug, items (default), recovered. 'all' exports the (allocated) items, orphan and recovered items. 'debug' exports all the (allocated) items, also those outside the the root folder. 'items' exports the (allocated) items. 'recovered' exports the orphan and recovered items.
43+
export mode, option: all, debug, items (default), recovered. 'all' exports the (allocated) items, orphan and recovered items. 'debug' exports all the (allocated) items, also those outside the root folder. 'items' exports the (allocated) items. 'recovered' exports the orphan and recovered items.
4444
.It Fl q
4545
quiet shows minimal status information
4646
.It Fl t Ar target

0 commit comments

Comments
 (0)