mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
7 lines
150 B
Text
7 lines
150 B
Text
|
#!/bin/sh
|
||
|
# Calls astyle with settings matching Calamares coding style
|
||
|
# Requires astyle >= 2.04
|
||
|
set -e
|
||
|
|
||
|
astyle --options=$(dirname $0)/astylerc "$@"
|