Hallo Leute der Fehler ist dieser:
File ended while scanning use of \\newacronym. \include{content/1_intro}
Habe jetzt ca. 2 Stunden im Internet durchgesucht aber finde leider keine Lösung. 
Hoffe ein Forum kann mir nun helfen 
 ..
Danke Schonmal im Voraus.
MFG
Kalandir
das ist die Texfile:
\documentclass[
    11pt,
    a4paper,
    egregdoesnotlikesansseriftitles,
    toc=chapterentrywithdots,
    ,openright,
    twoside,
    titlepage,
    parskip=half,
    headings=normal,  % reduces heading size
    listof=totoc,
    bibliography=totoc,
    index=totoc,
    captions=tableheading,  % caption below table
    chapterprefix,
    listof=flat,
    final
]{scrbook}
% details about your thesis
\newcommand{\titel}{Konzeption und prototypische Realisierung einer Softwarekomponente zur Direktkommunikation von Pick-by-Light-Komponenten mit einem SAP-System}
\newcommand{\artderarbeit}{Bachelorarbeit}  % {Bachelorarbeit,Masterarbeit}
\newcommand{\autor}{Deniz Dinc}
\newcommand{\studiengang}{Wirtschaftsinformatik}  % {Informatik,Wirtschaftsinformatik,Medieninformatik}
\newcommand{\matrikelnr}{3201682}
\newcommand{\erstgutachter}{Prof.\,Dr.Joachim Scheja}
\newcommand{\zweitgutachter}{Prof.Dr.Wolfang Bremer}
\newcommand{\betreuer}{M.Sc.\,Martina Schmidt}
\newcommand{\unternehmen}{Dematic GmbH}
\newcommand{\logo}{figures/TH-Nuernberg-RGB.png}
\newcommand{\keywords}{hot, fuzz}
% custom head and foot
\usepackage[automark]{scrlayer-scrpage}
\pagestyle{scrheadings}
\ihead{\headmark}
\chead{}
\ohead{\pagemark}
\renewcommand*\chaptermarkformat{\chapappifchapterprefix{\ }% 
  \thechapter.\enskip}
\RedeclareSectionCommand[tocindent=0pt]{section}
\RedeclareSectionCommand[tocindent=0pt]{subsection}
%\RedeclareSectionCommand[tocnumwidth=70pt]{chapter}
\usepackage{scrhack}
% other packages
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern,relsize,textcomp,csquotes}
\usepackage{amsmath,amsfonts}
\usepackage[english, ngerman]{babel}  % flip for German thesis
\usepackage[final]{graphicx}
\usepackage{setspace,geometry,xcolor}
\usepackage{makeidx}
\usepackage{paralist,ifthen,todonotes}
\usepackage{url}
\usepackage{pdfpages}
\usepackage{footmisc}
\usepackage{float} %Für [H] Bild fix an der Stelle
%\usepackage[printonlyused]{acronym} erstmal Glossaries testen
\usepackage[acronym]{glossaries}
\setacronymstyle{long-short}
%acronyms einstellungen
% masculine accusative
% table setup
\usepackage{longtable}
\usepackage{array}
\usepackage{ragged2e}
\usepackage{lscape}
% pdf hyperref
\usepackage[
    bookmarks=true,
    bookmarksopen=true,
    bookmarksnumbered=true,
    bookmarksopenlevel=1,
    pdftitle={\titel},
    pdfauthor={\autor},
    pdfcreator={\autor},
    pdfsubject={\titel},
    pdfkeywords={\keywords},
    pdfpagelabels=true,
    colorlinks=true,
    linkcolor=black,
    urlcolor=magenta,
    anchorcolor=black,
    citecolor=black,
    filecolor=magenta,
    menucolor=red,
    plainpages=false,
    hypertexnames=true,
    linktocpage=true,
]{hyperref}
% configure your listings style
\usepackage{listings}
\lstset{
	tabsize=3,
	extendedchars=true,
	frame=single,
	showstringspaces=true,
	numbers=left,
	numberstyle=\small,
	breakautoindent=true
}
% page setup
% \setlength{\topskip}{\ht\strutbox}
\geometry{paper=a4paper,left=2.5cm,top=3.0cm,bindingoffset=.8cm}
\onehalfspacing
\frenchspacing
\clubpenalty = 10000
\widowpenalty = 10000 
\displaywidowpenalty = 10000
% some commands
\newcommand{\ua}{\mbox{u.\,a.\ }}
\newcommand{\zB}{\mbox{z.\,B.\ }}
\newcommand{\dahe}{\mbox{d.\,h.,\ }}
\newcommand{\bzw}{\mbox{bzw.\ }}
\newcommand{\bzgl}{\mbox{bzgl.\ }}
\newcommand{\eg}{\mbox{e.\,g.\ }}
\newcommand{\ie}{\mbox{i.\,e.\ }}
\newcommand{\wrt}{\mbox{w.\,r.\,t.\ }}
\newcommand{\etal}{\mbox{\emph{et.\,al.\ }}}
%footnote config
\deffootnote[10pt]{10pt}{10pt}{\makebox[10pt][l]{\thefootnotemark\hspace{10pt}}}
% TODO remove if not needed...
\usepackage{blindtext}
\begin{document}
%tiefere gliederungspunkte
\setcounter{tocdepth}{2}
\setcounter{secnumdepth}{3}
\frontmatter
\include{cover}\cleardoublepage
% download the following form and complete it (hit save in your editor)
% https://intern.ohmportal.de/fileadmin/G ... public.pdf
\includepdf{SB_0050_FO_Pruefungsrechtliche_Erklaerung_und_Erklaerung_zur_Veroeffentlichung_der_Abschlussarbeit_public.pdf}\cleardoublepage
\include{content/0_abstract}\cleardoublepage
\tableofcontents
\mainmatter
\include{content/1_intro}
\include{content/2_grundlagen}
\include{content/3_Konzeption}
\include{6_fazit}
\include{content/7_abrev}
\backmatter
\listoffigures
\cleardoublepage
\listoftables
\cleardoublepage
\renewcommand{\lstlistlistingname}{List of Listings}  % change for German thesis
\lstlistoflistings
\cleardoublepage
\cleardoublepage
\bibliographystyle{wmaainf}
\bibliography{refs}
\end{document}
