From: Patrick Canterino Date: Tue, 25 Jan 2022 18:53:56 +0000 (+0100) Subject: Removed the full path to the CLI programs X-Git-Url: https://git.p6c8.net/psmysqlbackup.git/commitdiff_plain/d904200840e55a663bc3b6b1a01cfb3f40b9db47?hp=4325c24df7b1687beaf82e23d373fb294a62ea17 Removed the full path to the CLI programs --- diff --git a/psmysqlbackup.ps1 b/psmysqlbackup.ps1 index 8ecf827..a99e18a 100644 --- a/psmysqlbackup.ps1 +++ b/psmysqlbackup.ps1 @@ -18,9 +18,9 @@ $configMysqlUser = 'backup' $configMysqlPassword = 'backup' # Path to MySQL CLI program -$configMysqlCli = 'C:\Program Files\MariaDB 10.5\bin\mysql.exe' +$configMysqlCli = 'mysql.exe' # Path to mysqldump CLI program -$configMysqldumpCli = 'C:\Program Files\MariaDB 10.5\bin\mysqldump.exe' +$configMysqldumpCli = 'mysqldump.exe' # Directory where to store the backups $configBackupDir = 'backup'